【调度系统】广东民航医疗快线调度系统源代码
克樊道人
2024-12-02 61ce8cc6883e5f94e6470141df3484167caf31ed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//------------- maps-vector.js -------------//
$(document).ready(function() {
 
 
 
    //------------- Vector maps -------------//
    $('#world-map-markers').vectorMap({
        map: 'world_mill_en',
        scaleColors: ['#f7f9fe', '#29b6d8'],
        normalizeFunction: 'polynomial',
        hoverOpacity: 0.7,
        hoverColor: false,
        focusOn:{
            x: 0.5,
            y: 0.5,
            scale: 2.0
        },
        zoomMin:0.85,
        markerStyle: {
          initial: {
            fill: '#df6a78',
            stroke: '#df6a78'
          }
        },
        backgroundColor: '#fff',
        regionStyle:{
            initial: {
                fill: '#dde1e7',
                "fill-opacity": 1,
                stroke: '#f7f9fe',
                "stroke-width": 0,
                "stroke-opacity": 0
            },
            hover: {
                "fill-opacity": 0.8
            },
            selected: {
                fill: 'yellow'
            }
        },
        markers: [
            //http://www.latlong.net/
            {latLng: [51.507351, -0.127758], name: 'London'},
            {latLng: [41.385064, 2.173403], name: 'Barcelona'},
            {latLng: [40.712784, -74.005941], name: 'New York'},
            {latLng: [-22.911632, -43.188286], name: 'Rio De Janeiro'},
            {latLng: [49.282729, -123.120738], name: 'Vancuver'},
            {latLng: [35.689487, 139.691706], name: 'Tokio'},
            {latLng: [55.755826, 37.617300], name: 'Moskva'},
            {latLng: [43.214050, 27.914733], name: 'Varna'},
            {latLng: [30.044420, 31.235712], name: 'Cairo'}            
        ]
    });
    
});