Skip to content

Commit 9c9f0fc

Browse files
author
Jill Grant
authored
Merge pull request #291675 from stevemunk/copilot-update-screenshots
Updated screenshots in Migrate Bing Maps Enterprise applications to Azure Maps with GitHub Copilot
2 parents b025eff + 551de45 commit 9c9f0fc

File tree

4 files changed

+3
-2
lines changed

4 files changed

+3
-2
lines changed
28 KB
Loading
240 KB
Loading
62.5 KB
Loading

articles/azure-maps/migrate-help-using-copilot.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ GitHub Copilot generates a code snippet that matches your instructions, using [A
112112
<meta charset="UTF-8">
113113
<meta name="viewport" content="width=device-width, initial-scale=1.0">
114114
<title>Azure Maps Geocode and Pushpin Example</title>
115-
<script type="text/javascript" src="https://atlas.microsoft.com/sdk/js/atlas.min.js?api-version=3"></script>
115+
<link href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.css" rel="stylesheet" />
116+
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/3/atlas.min.js"></script>
116117
<style>
117118
#map {
118119
width: 100%;
@@ -124,7 +125,7 @@ GitHub Copilot generates a code snippet that matches your instructions, using [A
124125
<div id="map"></div>
125126
<script>
126127
var subscriptionKey = 'YOUR_SUBSCRIPTION_KEY'; // Replace with your Azure Maps subscription key
127-
var query = '1 Microsoft Way, Seattle';
128+
var query = '1 Microsoft Way, Redmond';
128129
129130
// Make Geocode API request
130131
fetch(`https://atlas.microsoft.com/geocode?api-version=2023-06-01&subscription-key=${subscriptionKey}&query=${query}`)

0 commit comments

Comments
 (0)