Newer
Older
quiz2023 / map.html
@森谷海斗 森谷海斗 on 4 Aug 2024 729 bytes Update 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>
		<script type="text/javascript" src="map.js" charset="utf-8"></script>
	</head>

	<body>
		<h1>酒田マップ</h1>
		<div id="mapid" style="width:1200px; height:500px"></div>

	<script>
		var mymap = L.map('mapid').setView([38.893257,139.8187444], 15);
		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>