$(function(){
$.getJSON('data.json', function(data){
new jvm.WorldMap({
map: 'world_mill_en',
container: $('#map'),
markers: [
{latLng: [47.5, 19.0833], name: '1'},
{latLng: [51.5170, -0.1050], name: '2'}
],
//markers : data.results,
});
});
});
该代码有效,但从 JSON 加载时没有任何反应。我假设我的 JSON 格式不正确。如何更正我的 data.json?
{[“latLng”:[47.5,19.0833],“名称”:“1”},{latLng:[51.5170,-0.1050],名称:“2”}]}