2

我正在使用JVectorMap显示美国地图,并希望在 5 个城市上放置标记。我的代码中有他们的经度和纬度,但它似乎不起作用。我看到地图左上角的标记。我不知道为什么他们定位在那里,而不是我的代码中的城市?

如果有人可以提供一些关于标记为什么不能正常工作的见解:

在这里查看我的代码:http: //jsfiddle.net/xtian/fqqGs/

JS:

$(function(){
        $('#map').vectorMap({
        map: 'us_aea_en',
        zoomOnScroll: false,
        hoverOpacity: 0.7,
        markerStyle: {
          initial: {
            fill: '#F8E23B',
            stroke: '#383f47'
          }
        },
        markers: [
          {latLng: [41.50, 87.37], name: 'Chicago'},
          {latLng: [32.46, 96.46], name: 'Dallas'},
          {latLng: [36.10, 115.12], name: 'Las Vegas'},
          {latLng: [34.3, 118.15], name: 'Los Angeles'},
          {latLng: [40.43, 74.00], name: 'New York City'}
        ]        
        });
       });​
4

2 回答 2

4

您刚刚提供了错误的坐标。经度应该是负数:

markers: [
    {latLng: [41.50, -87.37], name: 'Chicago'},
    {latLng: [32.46, -96.46], name: 'Dallas'},
    {latLng: [36.10, -115.12], name: 'Las Vegas'},
    {latLng: [34.3, -118.15], name: 'Los Angeles'},
    {latLng: [40.43, -74.00], name: 'New York City'}
]    

这是一个更新的演示

于 2012-11-13T15:00:37.413 回答
0

你能发布你的“网格”吗?像这样的东西?

$.fn.vectorMap('addMap', 'map_name',{ 
"insets": [{
    "width": 500, 
    "top": 0, 
    "height": 500, 
    "bbox": [{
        "y": -12000000.0, 
        "x": -19000000.0
    }, {
        "y": 6900000.0, 
        "x": 19000000.0
    }],
}],
"paths": {
...
于 2012-11-13T07:13:05.657 回答