leafletを鍛える。その15
概要
leafletを鍛えてみた。
マーカーを次々、表示してみた。
写真
サンプルコード
var map = L.map('map').setView([35.7, 139.7], 12);
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
attribution: '© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
var k = 0;
var marker;
var train = trains[k];
marker = L.marker([train.location.lat, train.location.lon], {
title: train.train_number
}).addTo(map);
function next() {
k++;
if (k > train.length) k = 0;
map.removeLayer(marker);
train = trains[k];
marker = L.marker([train.location.lat, train.location.lon], {
title: train.train_number
}).addTo(map);
marker.bindPopup('title: ' + train.train_number );
marker.openPopup();
setTimeout(next, 3000);
}
next();
成果物
var map = L.map('map').setView([35.7, 139.7], 12);
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
attribution: '© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
var k = 0;
var marker;
var train = trains[k];
marker = L.marker([train.location.lat, train.location.lon], {
title: train.train_number
}).addTo(map);
function next() {
k++;
if (k > train.length) k = 0;
map.removeLayer(marker);
train = trains[k];
marker = L.marker([train.location.lat, train.location.lon], {
title: train.train_number
}).addTo(map);
marker.bindPopup('title: ' + train.train_number );
marker.openPopup();
setTimeout(next, 3000);
}
next();
以上。
Author And Source
この問題について(leafletを鍛える。その15), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/8066427e27588a720868著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .