Newer
Older
quiz2023 / map.html
@森谷海斗 森谷海斗 on 4 Aug 2024 630 bytes Create map.html
<!DOCTYPE html>

<html>

	<head>
		<meta charset="UTF-8">
		<title>日進市 観光マップ</title>
		<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.1/dist/leaflet.css" />
		<script src="https://unpkg.com/leaflet@1.3.1/dist/leaflet.js"></script>
	</head>

	<body>
		<div id="mapid" style="width:500px; height:500px"></div>

	<script>
		var mymap = L.map('mapid').setView([35.130621, 137.037568], 13);
		L.tileLayer(
			'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
			{ attribution: '&copy; <a href="http://osm.org/copyright">OpenStreetMap</a> contributors' }
		).addTo(mymap);

	</script>
	
	</body>

</html>