使用Google地图的geoJson文件中的点的自定义标记

时间:2014-06-26 14:23:32

标签: javascript json google-maps google-maps-api-3

我使用GeoJSON作为Google地图的数据源。我使用API​​的v3来创建数据层,如下所示:

<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
<script>
var map;
function initialize() {

  //Initialise the map
  var myLatLng = new google.maps.LatLng(53.231472,-0.539783);
  map = new google.maps.Map(document.getElementById('map-canvas'), {
    zoom: 17,
    center: myLatLng,
    scrollwheel: false,
    panControl: false,
    zoomControl: false,
    scaleControl: true,
    disableDefaultUI: true
  });

  //Initialise base folder for icons
  var iconBase = '/static/images/icons/';

  //Load the JSON to show places
  map.data.loadGeoJson('/api/geo');

}

google.maps.event.addDomListener(window, 'load', initialize);
</script>

<div id="map-canvas"></div>

我的GeoJSON数据来源如下:

{
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "icon": "/static/images/icons/map-marker-do.png",
        "coordinates": [
          -0.53743,
          53.23437
        ]
      },
      "properties": {
        "name": "Cathedral",
        "description": "One of Europe’s finest Gothic buildings, once the tallest building in the world that dominates Lincoln's skyline.",
        "icon": "/static/images/icons/map-marker-do.png"
      }
    }
  ]
}

我要做的是让地图上的标记图标来自&#34;图标&#34; JSON中的属性,但无法弄清楚如何获取数据来更改默认标记。有人可以提供任何建议吗?感谢。

1 个答案:

答案 0 :(得分:31)

使用样式功能(样式功能使您可以根据特定功能应用样式)

  map.data.setStyle(function(feature) {
    return {icon:feature.getProperty('icon')};
  });