-
Notifications
You must be signed in to change notification settings - Fork 447
/
Simple Store Locator.html
46 lines (38 loc) · 1.89 KB
/
Simple Store Locator.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<title>Simple Store Locator - Azure Maps Web SDK Samples</title>
<meta charset="utf-8" />
<link rel="shortcut icon" href="/favicon.ico"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="This tutorial shows how to create a simple store locator." />
<meta name="keywords" content="Microsoft maps, map, gis, API, SDK, tutorials, store locator, locator, coffee, contoso, clustering" />
<meta name="author" content="Microsoft Azure Maps" /><meta name="version" content="1.0" />
<meta name="screenshot" content="screenshot.jpg" />
<!-- Add references to the Azure Maps Map control JavaScript and CSS files. -->
<link href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" rel="stylesheet" />
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.js"></script>
<!-- Add a reference to the Azure Maps Rest Helper JavaScript file. -->
<script src="https://samples.azuremaps.com/lib/azure-maps/azure-maps-helper.min.js"></script>
<!-- Add references to the store locator JavaScript and CSS files. -->
<link rel="stylesheet" href="/tutorials/simple-store-locator/index.css" type="text/css" />
<script src="/tutorials/simple-store-locator/index.js"></script>
</head>
<body>
<header>
<img src="/tutorials/simple-store-locator/images/Logo.png" />
<span>Contoso Coffee</span>
</header>
<main>
<div class="searchPanel">
<div>
<input id="searchTbx" type="search" placeholder="Find a store" />
<button id="searchBtn" title="Search"></button>
</div>
</div>
<div id="listPanel"></div>
<div id="myMap"></div>
<button id="myLocationBtn" title="My Location"></button>
</main>
</body>
</html>