view staff/fujix/leaf.html @ 3944:e45173af0101 default tip master

chenge game link
author KOMATSU Kotaro <c118089@roy.e.koeki-u.ac.jp>
date Mon, 20 Jan 2020 18:13:48 +0900
parents b56bf1659fd5
children
line wrap: on
line source

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="leaflet/leaflet.css"/>

<script src="leaflet/leaflet.js"></script>
<style>
 html,body,#map{
    height: 100%
 }
 body{
    padding: 0;
    margin: 0;
 }
				    </style>

<title>Getting Started with Leaflet</title>
</head>

<body>
<div id="map"></div>
<script type="text/javascript">
  var hmap = L.map('map',{
     center: [38.91026,139.84532],
     zoom: 14 //1~18
  });
  L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',{
    attribution: '&copy; OpenStreetMap contributors'
  }).addTo(hmap);
  L.marker([38.91026,139.84532],{
    clickable:true
  })
    .bindPopup('ほげ')
    .addTo(hmap);
</script>
</body>
</html>

yatex.org