我在使用 Jvectormap 时遇到的另一个令人沮丧的问题是,我希望通过 lngLat 专注于页面/地图加载上的标记,我该怎么做?理想情况下,最好说专注于这个标记或专注于 latlng。每张地图我只会显示 1 个标记,但我不知道 x/y 只是 lngLat 或可能的国家代码。可能有一种更简单的方法可以做到这一点,因此欢迎提出建议。感谢您在高级方面的帮助
var markers = [ {latLng: [47.774099, -52.793427], name: "loc 1", label: "This blahblah"}]
$(function(){
$('#map1').vectorMap({
map: 'world_mill_en',
scale: ['#C8EEFF', '#0071A4'],
normalizeFunction: 'polynomial',
hoverOpacity: 0.7,
hoverColor: false,
markerStyle: {
initial: {
fill: '#F8E23B',
stroke: '#383f47'
}
},
backgroundColor: '#383f47',
markers: markers,
focusOn:{
latLng: [47.774099, -52.793427],
scale: 5
},
onMarkerLabelShow: function(event, label, index) {
label.html( ''+markers[index].label+'');
}
});
});