leafletを鍛える。その17
概要
leafletを鍛えてみた。
マーカーをアニメーションしてみた。
写真
サンプルコード
var map = L.map('map').setView([37.913961, 140.142267], 17);
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
attribution: 'OSM'
}).addTo(map);
var line = L.polyline([[37.913961, 140.142267], [37.913961, 140.142267], [37.913106, 140.142664], [37.912716, 140.141612]]);
map.addLayer(line);
var animatedMarker = L.animatedMarker(line.getLatLngs());
map.addLayer(animatedMarker);
成果物
var map = L.map('map').setView([37.913961, 140.142267], 17);
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
attribution: 'OSM'
}).addTo(map);
var line = L.polyline([[37.913961, 140.142267], [37.913961, 140.142267], [37.913106, 140.142664], [37.912716, 140.141612]]);
map.addLayer(line);
var animatedMarker = L.animatedMarker(line.getLatLngs());
map.addLayer(animatedMarker);
以上。
Author And Source
この問題について(leafletを鍛える。その17), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/0b1b01db38332a8c161b著者帰属:元の著者の情報は、元の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 .