web-dev-qa-db-ja.com

Googleマップを使用したgeoJsonファイルからのポイントのカスタムマーカー

GoogleマップのデータソースとしてGeoJSONを使用しています。 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"
      }
    }
  ]
}

私がやろうとしていることは、マップ上のマーカーアイコンをJSONの "icon"プロパティから取得することですが、データを取得してデフォルトマーカーを変更する方法を理解できません。誰かアドバイスはありますか?ありがとう。

19
doubleplusgood

スタイリング関数を使用する(スタイリング関数を使用すると、特定の機能に基づいてスタイルを適用できます)

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