mirror of
https://github.com/visgl/react-map-gl.git
synced 2025-12-08 20:16:02 +00:00
16 lines
358 B
HTML
16 lines
358 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>
|
|
<script src='app.js'></script>
|
|
</body>
|
|
<script type="text/javascript">
|
|
App.renderToDom(document.getElementById('map'));
|
|
</script>
|
|
</html>
|