leafletを鍛える。その11
概要
leafletを鍛えてみた。
d3のv4でjsonよんでみた。
写真
参考にしたページ
サンプルコード
var map = L.map('map').setView([35.7, 139.7], 3);
var mapLink = '<a href="http://openstreetmap.org">OpenStreetMap</a>';
L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '© ' + mapLink + ' Contributors',
maxZoom: 18,
}).addTo(map);
d3.json("http://jsrun.it/assets/Q/w/7/T/Qw7TW", function(error, json) {
var data = json.results.bindings;
data.forEach(function(d, i) {
if (d.lat.value != null && d.long.value != null)
{
var title = d.name.value;
var mark = L.marker(([d.lat.value, d.long.value]), {
title: title
}).addTo(map);
}
});
});
成果物
var map = L.map('map').setView([35.7, 139.7], 3);
var mapLink = '<a href="http://openstreetmap.org">OpenStreetMap</a>';
L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '© ' + mapLink + ' Contributors',
maxZoom: 18,
}).addTo(map);
d3.json("http://jsrun.it/assets/Q/w/7/T/Qw7TW", function(error, json) {
var data = json.results.bindings;
data.forEach(function(d, i) {
if (d.lat.value != null && d.long.value != null)
{
var title = d.name.value;
var mark = L.marker(([d.lat.value, d.long.value]), {
title: title
}).addTo(map);
}
});
});
以上。
Author And Source
この問題について(leafletを鍛える。その11), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/8a7af09bd3e58191f9b9著者帰属:元の著者の情報は、元の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 .