mirror of
https://github.com/visgl/react-map-gl.git
synced 2026-01-18 15:54:22 +00:00
18 lines
496 B
HTML
18 lines
496 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset='UTF-8' />
|
|
<title>react-map-gl Example</title>
|
|
<link rel="stylesheet" type="text/css" href="app.css" />
|
|
</head>
|
|
<body>
|
|
<div id="map"></div>
|
|
<!--use mapbox button icon css-->
|
|
<link rel="stylesheet" href="https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-draw/v1.0.9/mapbox-gl-draw.css" type="text/css">
|
|
<script src='app.js'></script>
|
|
</body>
|
|
<script type="text/javascript">
|
|
App.renderToDom(document.getElementById('map'));
|
|
</script>
|
|
</html>
|