[GMaps API v3] Ingress Intel Map Style
小ネタ。
Ingress Intel Map風のスタイルでGoogleマップを表示します。
ポータルやコントロールフィールドがないと寂しい感じ。
サンプル
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
var style = [ { featureType : "all", elementType : "all", stylers : [ { visibility : "on" }, { hue : "#131c1c" }, { saturation : "-50" }, { invert_lightness : !0 } ] }, { featureType : "water", elementType : "all", stylers : [ { visibility : "on" }, { hue : "#005eff" }, { invert_lightness : !0 } ] }, { featureType : "poi", stylers : [ { visibility : "off" } ] }, { featureType : "transit", elementType : "all", stylers : [ { visibility : "off" } ] } ]; var map = new google.maps.Map(document.getElementById('map'), { backgroundColor : "#0b0c0d", mapTypeId : google.maps.MapTypeId.ROADMAP, minZoom : 1, panControl : !1, styles : style, zoom : 14, center: new google.maps.LatLng(35.6706505 , 139.77186140000003), streetViewControlOptions : { position : google.maps.ControlPosition.RIGHT_CENTER }, zoomControlOptions : { position : google.maps.ControlPosition.RIGHT_CENTER } }); |
“[GMaps API v3] Ingress Intel Map Style” への1件の返信
現在コメントは受け付けていません。