leafletを鍛える。その13


概要

leafletを鍛えてみた。
マーカークリックで飛んでみた。

写真

サンプルコード

var map = L.map('map').setView([38.3748331, 139.9574997], 12);
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
    attribution: '&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
var marker = L.marker([38.3748331, 139.9574997], {
    title: "title"
}).addTo(map);
marker.on("click", function() {
    window.open("http://jsdo.it", "_blank");
});  
L.DomUtil.addClass( marker._icon, 'leaflet-marker-icon-color-red' );

成果物

以上。