Leafletで現在位置の表示するためにはHTML5の「Geolocation API」を利用して下記のように記述します。
Geolocation APIとは、HTML5から活用されるようになった位置情報を扱うためのAPIです。JavaScriptで記述することにより現在の位置情報を取得できます。
index.html
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>sample</title>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
<script src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script>
<script src="http://maps.google.com/maps/api/js?v=3.2&sensor=false"></script>
<script src="http://matchingnotes.com/javascripts/leaflet-google.js"></script>
<link href="stylesheet.css" rel="stylesheet" />
</head>
<body>
<div id="map"></div>
<script src="script.js"></script>
</body>
</html>
stylesheet.css
html, body {
width: 100%;
height: 100%;
}
#map {
width: 100%;
height: 100%;
}
.leaflet-map-pane {
z-index: 2 !important;
}
.leaflet-google-layer {
z-index: 1 !important;
}
script.js
navigator.geolocation.getCurrentPosition(successCallback, errorCallback);
function successCallback(position) {
var lat = position.coords.latitude;
var lng = position.coords.longitude;
var t_std = new L.tileLayer('http://cyberjapandata.gsi.go.jp/xyz/std/{z}/{x}/{y}.png', {
attribution: "<a href='http://www.gsi.go.jp/kikakuchousei/kikakuchousei40182.html' target='_blank'>国土地理院</a>"
});
var t_pale = new L.tileLayer('http://cyberjapandata.gsi.go.jp/xyz/pale/{z}/{x}/{y}.png', {
attribution: "<a href='http://www.gsi.go.jp/kikakuchousei/kikakuchousei40182.html' target='_blank'>国土地理院</a>"
});
var t_ort = new L.tileLayer('http://cyberjapandata.gsi.go.jp/xyz/ort/{z}/{x}/{y}.jpg', {
attribution: "<a href='http://www.gsi.go.jp/kikakuchousei/kikakuchousei40182.html' target='_blank'>国土地理院</a>"
});
var o_std = new L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
});
var g_roadmap = new L.Google('ROADMAP');
var g_satellite = new L.Google('SATELLITE');
var g_hybrid = new L.Google('HYBRID');
var Map_b = {
"地理院地図 標準": t_std,
"地理院地図 淡色": t_pale,
"地理院地図 オルソ": t_ort,
"OpenStreetMap 標準": o_std,
"GoogleMap 標準": g_roadmap,
"GoogleMap オルソ": g_satellite,
"GoogleMap ハイブリッド": g_hybrid,
};
var map = L.map('map', {
center: [lat, lng],
zoom: 16,
layers: [t_std]
});
var mapMarker = L.marker([lat, lng], { title: 'いまここ!' }).addTo(map);
var comment = 'いまここ!';
mapMarker.bindPopup(comment).openPopup();
L.control.scale({ maxWidth: 250, imperial: false }).addTo(map);
L.control.layers(Map_b, null, { collapsed: false }).addTo(map);
}
function errorCallback(error) {
alert("位置情報取得に失敗しました。");
}
index.htmlを実行すると下記のようにブラウザで表示されます。 ※「この地図は、国土地理院長の承認を得て、同院発行の電子地形図(タイル)を複製したものである。 (承認番号 平27情複、 第224号)」