<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Azure Maps topics</title>
    <link>https://techcommunity.microsoft.com/t5/azure-maps/bd-p/AzureMaps</link>
    <description>Azure Maps topics</description>
    <pubDate>Sun, 03 May 2026 04:22:55 GMT</pubDate>
    <dc:creator>AzureMaps</dc:creator>
    <dc:date>2026-05-03T04:22:55Z</dc:date>
    <item>
      <title>Could not load image because of out of range source coordinates for image copy.</title>
      <link>https://techcommunity.microsoft.com/t5/azure-maps/could-not-load-image-because-of-out-of-range-source-coordinates/m-p/4441495#M153</link>
      <description>&lt;P&gt;I use the azure-maps-control SDK version 2.3.7 for my Angular app. When I Initialise the Map it intermittently fires the error event. So sometimes it fires when the map loads and sometimes it does not. The error fires before I add any markers to the map, but Also if I remove all my code to add markers to the map and simply initialise the map. So if the error event fires the message I receive is: "Could not load image because of out of range source coordinates for image copy. Please make sure to use a supported image type such as PNG or JPEG. Note that SVGs are not supported."&lt;BR /&gt;&lt;BR /&gt;I use the Angular ngAfterViewInit lifecycle hook to initialise the map and the AzureMapsModule.forRoot to set the authOptions&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="typescript"&gt;ngAfterViewInit(): void {
    this._initMap();
  }

  private _initMap() {
    this._map = new atlas.Map(this.mapId, {
      language: 'en-us',
      style: 'satellite',
      showFeedbackLink: false,
    });

    this._map.events.add('ready', (event) =&amp;gt; {
      this._map$.next(event.map);
      this.map.emit(this._map$.asObservable());
    });

    this._map.events.add('error', (e) =&amp;gt; {
      console.error(e);
      this._sharedService.showMessage(
        'Error occurred while loading the map',
        SnackBarClasses.error,
      );
    });

    this._map$.next(this._map);
  }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="typescript"&gt;AzureMapsModule.forRoot({
      authOptions: {
        authType: AuthenticationType.subscriptionKey,
        subscriptionKey: environment.azureMapsSubscriptionKey,
      },
    }),&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Aug 2025 10:20:30 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/azure-maps/could-not-load-image-because-of-out-of-range-source-coordinates/m-p/4441495#M153</guid>
      <dc:creator>JeroenBooij</dc:creator>
      <dc:date>2025-08-08T10:20:30Z</dc:date>
    </item>
    <item>
      <title>Create tilelayer using a GDAL Tiler tilematrix set</title>
      <link>https://techcommunity.microsoft.com/t5/azure-maps/create-tilelayer-using-a-gdal-tiler-tilematrix-set/m-p/4439656#M150</link>
      <description>&lt;P&gt;I'm porting an application from Bing maps which used many tilesets generated using the GDAL tiler.&lt;/P&gt;&lt;P&gt;In the Bing Maps API these layers needed a custom url which modified the y component.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So where Azure Maps uses the the option tileUrl:url&amp;nbsp; I need something like ...&lt;/P&gt;&lt;P&gt;This works in Bing .....&lt;/P&gt;&lt;DIV&gt;uriConstructor:function(coord){&amp;nbsp; // coord is a PyramidTileId with : z,y,zoom,pixwidth,pixheight.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;var ymax=1&amp;lt;&amp;lt;coord.zoom;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;var y=ymax-coord.y-1;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;return url.replace('{x}',coord.x).replace('{y}',y).replace('{z}',coord.zoom);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;}&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I do so hope there is someone out there with some cool code to get me out of a very tight spot.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Thanks&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Steve&lt;/DIV&gt;</description>
      <pubDate>Mon, 04 Aug 2025 07:59:20 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/azure-maps/create-tilelayer-using-a-gdal-tiler-tilematrix-set/m-p/4439656#M150</guid>
      <dc:creator>steve-smith</dc:creator>
      <dc:date>2025-08-04T07:59:20Z</dc:date>
    </item>
    <item>
      <title>Address Search vs Geocode API 2025-01-01?</title>
      <link>https://techcommunity.microsoft.com/t5/azure-maps/address-search-vs-geocode-api-2025-01-01/m-p/4429515#M148</link>
      <description>&lt;P&gt;What's the difference between the following?&lt;BR /&gt;&lt;BR /&gt;Address Search:&lt;BR /&gt;https://atlas.microsoft.com/search/address/json?&amp;amp;subscription-key={Your-Azure-Maps-Subscription-key}&amp;amp;api-version=1.0&amp;amp;language=en-US&amp;amp;query=400 Broad St, Seattle, WA 98109&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Geocode using API 2025-01-01&lt;/P&gt;&lt;P&gt;https://atlas.microsoft.com/geocode?api-version=2025-01-01&amp;amp;subscription-key={Your-Azure-Maps-Subscription-key}&amp;amp;query=400 Broad St, Seattle, WA 98109&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Both give you the latitude and longitude. What's the preferred one to use? I'm using the 2025-01-01 API for Route Matrix to get distance and time between points already.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 19:59:08 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/azure-maps/address-search-vs-geocode-api-2025-01-01/m-p/4429515#M148</guid>
      <dc:creator>HSBHSB</dc:creator>
      <dc:date>2025-07-02T19:59:08Z</dc:date>
    </item>
    <item>
      <title>Azure Maps computeBestOrder=true returns wrong originalWaypointIndexAtEndOfLeg values</title>
      <link>https://techcommunity.microsoft.com/t5/azure-maps/azure-maps-computebestorder-true-returns-wrong/m-p/4388732#M147</link>
      <description>&lt;P&gt;Hi.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to create a module where clients can optimize their routes using the Azure Maps service using DevExpress Map Control v24.2.5&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately when parsing to Azure Maps service computeBestOrder=true (regardless the RouteType) the JSON back has errors when sets the values for originalWaypointIndexAtEndOfLeg which DevExpress translates, which means cannot keep actual track of the changes in the route.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example.&amp;nbsp;&lt;/P&gt;&lt;P&gt;computeBestOrder=true&lt;/P&gt;&lt;P&gt;routetype=shortest&lt;/P&gt;&lt;P&gt;query=&lt;/P&gt;&lt;P&gt;while the list of the Legs is correct, the originalWaypointIndexAtEndOfLeg property is not.&amp;nbsp;&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So according to the JSON results from the API&lt;/P&gt;&lt;P&gt;(the system ignores Origin and Final Destination so is 0 based list of Waypoints)&lt;/P&gt;&lt;P&gt;0 -&amp;gt; 3 (Is true)&lt;BR /&gt;1 -&amp;gt; 2 (Is false, is actually 1 -&amp;gt; 4)&lt;BR /&gt;2 -&amp;gt; 0 (Is false, is actually 2 -&amp;gt; 2)&amp;nbsp; - example bellow&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&lt;BR /&gt;3 -&amp;gt; 1 (Is true)&lt;BR /&gt;4 -&amp;gt; 4 (Is false, is actually 4 -&amp;gt; 5)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That could have been an non issue if at the same time Azure wasn't truncating the Lat/Lon values, which the rounding is not simple Math.Round 5, so cannot get a meaningful way to build back the changes to the route and apply the correct location labels.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there something wrong with the service or the interpretation by myself and DevExpress is not correct when reading the originalWaypointIndexAtEndOfLeg values?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you have any queries, ορ requiring more information please let me know.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Mar 2025 12:40:53 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/azure-maps/azure-maps-computebestorder-true-returns-wrong/m-p/4388732#M147</guid>
      <dc:creator>PanosT</dc:creator>
      <dc:date>2025-03-04T12:40:53Z</dc:date>
    </item>
    <item>
      <title>Azure Distance Matrix API - Limiting miles</title>
      <link>https://techcommunity.microsoft.com/t5/azure-maps/azure-distance-matrix-api-limiting-miles/m-p/4378514#M143</link>
      <description>&lt;P&gt;We have a software vendor replacing our bing maps API with Azure Distance Matrix API. We are currently running into an issue where it is not returning any distances that are more than 248 miles. I'm guessing there is some sort of change that needs to be made to extend that to unlimited. Can anyone assist. Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 13 Feb 2025 21:02:34 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/azure-maps/azure-distance-matrix-api-limiting-miles/m-p/4378514#M143</guid>
      <dc:creator>lvaness</dc:creator>
      <dc:date>2025-02-13T21:02:34Z</dc:date>
    </item>
    <item>
      <title>Azure Maps does not zoom out completely</title>
      <link>https://techcommunity.microsoft.com/t5/azure-maps/azure-maps-does-not-zoom-out-completely/m-p/4361062#M139</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm working on a WordPress plugin and I needed to migrate from Bing Maps API to Azure Maps.&lt;/P&gt;&lt;P&gt;I noticed that it is not possible to zoom out to the maximum on a map created with the Azure maps API when it is restricted to a smaller portion of a screen. The more noticeable it is, the smaller the map gets.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;img&gt;This is the maximum zoom-out available.&lt;/img&gt;&lt;P&gt;Comparion with the Bing Maps similar size:&lt;/P&gt;&lt;img&gt;Maximum zoom-out for a Bing Map&lt;/img&gt;&lt;P&gt;Of course, I tested this with minZoom options like:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;map = new atlas.Map( "new_map", {
        center: [0, 0],
        maxZoom: 24,
        minZoom: 1 // with 0 map disappears 
});&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can see the maximum zoom out is drastically reduced.&lt;/P&gt;&lt;P&gt;This WordPress plugin allows you to show albums with photos from all over the world and smaller maps may not show all of them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Internet search showed me only one other post about this issue&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="lia-external-url" href="http://Power%20Bi%20community%20forum" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Issues/Azure-Maps-will-not-completely-zoom-out/idi-p/3446379#feedback-success&lt;/A&gt;&lt;/P&gt;&lt;P&gt;and similar but probably not correctly described in here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/answers/questions/1463153/the-new-azure-maps-seems-to-zoom-in-too-far" target="_blank"&gt;The new Azure Maps seems to zoom in too far - Microsoft Q&amp;amp;A&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a solution to this problem or I missed something?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Dec 2024 13:52:31 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/azure-maps/azure-maps-does-not-zoom-out-completely/m-p/4361062#M139</guid>
      <dc:creator>PawelB</dc:creator>
      <dc:date>2024-12-29T13:52:31Z</dc:date>
    </item>
    <item>
      <title>Migrate Bing Maps Distance Matrix to Azure Maps Route Matrix</title>
      <link>https://techcommunity.microsoft.com/t5/azure-maps/migrate-bing-maps-distance-matrix-to-azure-maps-route-matrix/m-p/4276448#M138</link>
      <description>&lt;P&gt;We currently use Bing Maps API to get distances between points using the distance matrix.&amp;nbsp; We use the following URL:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://dev.virtualearth.net/REST/v1/Routes/DistanceMatrix?origins={lat0,long0;lat1,lon1;latM,lonM}&amp;amp;destinations={lat0,lon0;lat1,lon1;latN,longN}&amp;amp;travelMode={travelMode}&amp;amp;startTime={startTime}&amp;amp;timeUnit={timeUnit}&amp;amp;key={BingMapsKey" target="_blank"&gt;https://dev.virtualearth.net/REST/v1/Routes/DistanceMatrix?origins={lat0,long0;lat1,lon1;latM,lonM}&amp;amp;destinations={lat0,lon0;lat1,lon1;latN,longN}&amp;amp;travelMode={travelMode}&amp;amp;startTime={startTime}&amp;amp;timeUnit={timeUnit}&amp;amp;key={BingMapsKey&lt;/A&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I've reviewed the migration document and it says to use the Route Matrix in Azure Maps, specifically the following URL:&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://atlas.microsoft.com/route/matrix/sync/json?api-version=1.0&amp;amp;subscription-key={subscription-key}" target="_blank"&gt;https://atlas.microsoft.com/route/matrix/sync/json?api-version=1.0&amp;amp;subscription-key={subscription-key}&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;When I try to use this URL, I get a 405 error every time.&amp;nbsp; I'm not sure of the format to add the origins and destinations like the Bing Maps example has. I'd really prefer to use this API over the SDK as I like to be in control of how I retrieve and pull data out of the results.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Is there an example of using the Route Matrix API?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2024 12:41:56 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/azure-maps/migrate-bing-maps-distance-matrix-to-azure-maps-route-matrix/m-p/4276448#M138</guid>
      <dc:creator>HSBHSB</dc:creator>
      <dc:date>2024-10-22T12:41:56Z</dc:date>
    </item>
    <item>
      <title>Azure maps - embedding iframe</title>
      <link>https://techcommunity.microsoft.com/t5/azure-maps/azure-maps-embedding-iframe/m-p/4245844#M132</link>
      <description>&lt;P&gt;Hi All,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a simple map (html) with pin location and is hosted in azure. Is there any way to embed the map using iframe into a web page? I am receiving a "content unavailable" message. I can defintely confirm the map is working and have tried directly using mobile and different networks.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think the problem is with the embed. Has anyone been successful in embedding using iframe?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 15 Sep 2024 11:52:47 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/azure-maps/azure-maps-embedding-iframe/m-p/4245844#M132</guid>
      <dc:creator>Bill_Rankin975</dc:creator>
      <dc:date>2024-09-15T11:52:47Z</dc:date>
    </item>
    <item>
      <title>Understanding of transactions</title>
      <link>https://techcommunity.microsoft.com/t5/azure-maps/understanding-of-transactions/m-p/4236689#M130</link>
      <description>&lt;P&gt;Hi!&lt;BR /&gt;We are going to create a drone app, where you will fly at some height over the ground. We'd like to use Azure imagery tiles. But it's hard to understand and calculate how much can it potentially cost. Could someone explain please, what actually "transaction" means?&amp;nbsp; Is it like each time you enter the app, or is it more likely tiles requests and 1 transaction == one request?&amp;nbsp;&lt;BR /&gt;For example, how many transactions would there be if we needed the drone to fly 1km from point A to B?&lt;BR /&gt;Thanks!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2024 14:56:31 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/azure-maps/understanding-of-transactions/m-p/4236689#M130</guid>
      <dc:creator>EugeneP2450</dc:creator>
      <dc:date>2024-09-04T14:56:31Z</dc:date>
    </item>
    <item>
      <title>Bing Maps "Birds eye View" Alternative</title>
      <link>https://techcommunity.microsoft.com/t5/azure-maps/bing-maps-quot-birds-eye-view-quot-alternative/m-p/4230716#M129</link>
      <description>&lt;P&gt;Hi Community,&lt;BR /&gt;I need to batch download high-resolution images of specific locations based on latitude and longitude. Previously, I used Bing Maps Bird’s Eye View, which provided the detail and perspective needed to identify objects like 40-yard dumpsters. With the Bing Maps API now discontinued for new users, I'm looking into Azure Maps.&lt;/P&gt;&lt;P&gt;My requirements:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;High clarity to accurately identify objects with the zoom level that I can set.&lt;/LI&gt;&lt;LI&gt;Bird’s Eye View (like Bing Maps) to capture depth and dimensions.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Can you suggest which Azure Maps services would best match these needs? Any guidance would be helpful.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Aug 2024 14:23:56 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/azure-maps/bing-maps-quot-birds-eye-view-quot-alternative/m-p/4230716#M129</guid>
      <dc:creator>mgharpur</dc:creator>
      <dc:date>2024-08-28T14:23:56Z</dc:date>
    </item>
    <item>
      <title>Azure geocoding vs bing maps</title>
      <link>https://techcommunity.microsoft.com/t5/azure-maps/azure-geocoding-vs-bing-maps/m-p/4225346#M128</link>
      <description>&lt;P&gt;Hi folks,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using Azure geocoding in an app and I am finding occasions when it's really not working very well and returning low or medium confidence results.&amp;nbsp; However, Bing maps with the same address finds the correct point on the map as do other services such as the UK Address finder app and Post Tag.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The following address highlights the issue well, although there are plenty of others:&lt;/P&gt;&lt;P&gt;Pentland View, Limekiln Road, Macbiehill, West Linton EH46 7BA&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's as if Bing has better map data.&amp;nbsp; Any help greatly appreciated.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2024 20:32:36 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/azure-maps/azure-geocoding-vs-bing-maps/m-p/4225346#M128</guid>
      <dc:creator>m0thman</dc:creator>
      <dc:date>2024-08-21T20:32:36Z</dc:date>
    </item>
    <item>
      <title>azure-maps-animations wont animate marker in Angular 17</title>
      <link>https://techcommunity.microsoft.com/t5/azure-maps/azure-maps-animations-wont-animate-marker-in-angular-17/m-p/4217581#M127</link>
      <description>&lt;P&gt;Hello. I'm trying to replicate this &lt;A href="https://samples.azuremaps.com/?sample=animate-along-a-route-path" target="_blank" rel="noopener"&gt;Azure Maps example&lt;/A&gt;, and I have everything working except the marker arrow, which isn't moving. When I provide a map, the camera animates correctly, but the arrow icon remains stationary.&lt;/P&gt;&lt;P&gt;The Atlas library and atlas.animations are present in the browser on runtime, and I am not receiving any console errors from the libraries. Any assistance would be appreciated.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN&gt;The azure-maps-animations.js used is from the last&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://github.com/Azure-Samples/azure-maps-animations/releases/tag/252490" rel="nofollow noreferrer" target="_blank"&gt;official release&lt;/A&gt;&lt;SPAN&gt;. (I changed azmaps to atlas, but that's beside the point because animation librari is working and present in browser console).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Here it is the HTML code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;div #myMap style="position:relative;width:100%;min-width:290px;height:600px;"&amp;gt;&amp;lt;/div&amp;gt;

&amp;lt;div style="position:absolute;top:15px;left:15px;border-radius:5px;padding:5px;background-color:white;"&amp;gt;
  &amp;lt;button (click)="play()"&amp;gt;Play&amp;lt;/button&amp;gt;
  &amp;lt;button (click)="pause()"&amp;gt;Pause&amp;lt;/button&amp;gt;
  &amp;lt;button (click)="stop()"&amp;gt;Stop&amp;lt;/button&amp;gt;
  &amp;lt;button (click)="reset()"&amp;gt;Reset&amp;lt;/button&amp;gt;
  &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;
  Follow: &amp;lt;input type="checkbox" (click)="toggleFollow()" title="Follow" checked/&amp;gt;&amp;lt;br/&amp;gt;
  Follow offset: &amp;lt;input type="checkbox" (click)="toggleFollowOffset()" title="Follow offset"/&amp;gt;&amp;lt;br/&amp;gt;
  Loop: &amp;lt;input type="checkbox" (click)="toggleLooping()" title="Loop"/&amp;gt;&amp;lt;br/&amp;gt;
  Reverse: &amp;lt;input type="checkbox" (click)="toggleReverse()" title="Reverse"/&amp;gt;
&amp;lt;/div&amp;gt;

&amp;lt;fieldset style="width:calc(100% - 30px);min-width:290px;margin-top:10px;"&amp;gt;
  &amp;lt;legend&amp;gt;Animate along a route path&amp;lt;/legend&amp;gt;
  This sample shows how to smoothly animate a symbol along a route path taking into consideration timestamps for each point in the route path.
  This sample also includes controls and options for the animation.
  This sample uses the open source &amp;lt;a href="https://github.com/Azure-Samples/azure-maps-animations" target="_blank" title="Azure Maps Animation module"&amp;gt;Azure Maps Animation module&amp;lt;/a&amp;gt;
&amp;lt;/fieldset&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And the typescript code (it's an angular component):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;import { Component, ElementRef, ViewChild } from '@angular/core';
import { RouterOutlet } from '@angular/router';
import atlas from 'azure-maps-control';

@Component({
  selector: 'app-root',
  standalone: true,
  imports: [RouterOutlet],
  templateUrl: './app.component.html',
  styleUrl: './app.component.scss',
})
export class AppComponent {
  @ViewChild('myMap', { static: true }) myMap!: ElementRef;

  map!: atlas.Map;
  pin!: atlas.Shape;
  lineSource!: atlas.source.DataSource;
  pinSource!: atlas.source.DataSource;
  animation!: any;

  routePoints = [
    new atlas.data.Feature(new atlas.data.Point([-122.34758, 47.62155]), { _timestamp: new Date('Tue, 18 Aug 2020 00:53:53 GMT').getTime() }),
    new atlas.data.Feature(new atlas.data.Point([-122.34764, 47.61859]), { _timestamp: new Date('Tue, 18 Aug 2020 00:54:53 GMT').getTime() }),
    new atlas.data.Feature(new atlas.data.Point([-122.33787, 47.61295]), { _timestamp: new Date('Tue, 18 Aug 2020 00:56:53 GMT').getTime() }),
    new atlas.data.Feature(new atlas.data.Point([-122.34217, 47.60964]), { _timestamp: new Date('Tue, 18 Aug 2020 00:59:53 GMT').getTime() })
  ];

  constructor() { }

  ngOnInit() {
    this.initializeMap();
  }

  initializeMap() {
    this.map = new atlas.Map(this.myMap.nativeElement, {
      center: [-122.345, 47.615],
      zoom: 14,
      view: 'Auto',
      authOptions: {
        authType: atlas.AuthenticationType.subscriptionKey,
        subscriptionKey: 'API_KEY',
      },
    });

    this.map.events.add('ready', () =&amp;gt; this.onMapReady());
  }

  onMapReady() {
    this.map.imageSprite.createFromTemplate('arrow-icon', 'marker-arrow', 'teal', '#fff').then(() =&amp;gt; {
      this.initializeSourcesAndLayers();
      this.initializePin();
      this.initializeAnimation();
    });
  }

  initializeSourcesAndLayers() {
    this.lineSource = new atlas.source.DataSource();
    this.pinSource = new atlas.source.DataSource();
    this.map.sources.add([this.lineSource, this.pinSource]);

    const path = this.routePoints.map(f =&amp;gt; f.geometry.coordinates);
    this.lineSource.add(new atlas.data.LineString(path));

    this.map.layers.add(new atlas.layer.LineLayer(this.lineSource, null, {
      strokeColor: 'DodgerBlue',
      strokeWidth: 3
    }));

    this.map.layers.add(new atlas.layer.SymbolLayer(this.pinSource, null, {
      iconOptions: {
        image: 'arrow-icon',
        anchor: 'center',
        rotation: ['+', 180, ['get', 'heading']],
        rotationAlignment: 'map',
        ignorePlacement: true,
        allowOverlap: true
      },
      textOptions: {
        ignorePlacement: true,
        allowOverlap: true
      }
    }));
  }

  initializePin() {
    this.pin = new atlas.Shape(this.routePoints[0]);
    this.pinSource.add(this.pin);
  }

  initializeAnimation() {
    this.animation = (window as any).atlas.animations.moveAlongRoute(this.routePoints, this.pin, {
      timestampProperty: 'timestamp',
      captureMetadata: true,
      loop: false,
      reverse: false,
      rotationOffset: 0,
      speedMultiplier: 60,
      map: this.map,
      zoom: 15,
      pitch: 45,
      rotate: true
    });
  }

  toggleAnimationOption(option: string, value?: any) {
    const options = this.animation.getOptions();
    this.animation.setOptions({
      [option]: value !== undefined ? value : !options[option]
    });
  }

  play() { this.animation.play(); }
  pause() { this.animation.pause(); }
  stop() { this.animation.stop(); }
  reset() { this.animation.reset(); }

  toggleFollow() { this.toggleAnimationOption('map', this.map); }
  toggleFollowOffset() { this.toggleAnimationOption('rotationOffset', this.animation.getOptions().rotationOffset === 0 ? 90 : 0);}
  toggleLooping() { this.toggleAnimationOption('loop'); }
  toggleReverse() { this.toggleAnimationOption('reverse'); }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Aug 2024 11:05:38 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/azure-maps/azure-maps-animations-wont-animate-marker-in-angular-17/m-p/4217581#M127</guid>
      <dc:creator>victorguillen</dc:creator>
      <dc:date>2024-08-13T11:05:38Z</dc:date>
    </item>
    <item>
      <title>Android SDK BoundingBox padding works different than the padding from web sdk?</title>
      <link>https://techcommunity.microsoft.com/t5/azure-maps/android-sdk-boundingbox-padding-works-different-than-the-padding/m-p/4182433#M120</link>
      <description>&lt;P&gt;Hello! I'm currently working on an Android application and I have to migrate the map from native sdk to web sdk using webview. I'm our current logic we use a lot the bounding box so we can have direct visibility of 2 pins, the main issue is that when I'm trying to add bearing and padding it seems like it is applied relative to the current orientation rather than on android sdk where it applies&amp;nbsp;in absolute directions,&amp;nbsp;regardless of the map's bearing. Has anyone encountered this or anyone know any tips for this? Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jul 2024 17:24:14 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/azure-maps/android-sdk-boundingbox-padding-works-different-than-the-padding/m-p/4182433#M120</guid>
      <dc:creator>adrian23135</dc:creator>
      <dc:date>2024-07-03T17:24:14Z</dc:date>
    </item>
    <item>
      <title>How to remove highlight on previously selected feature in geojson data on Azure Map polygon layer</title>
      <link>https://techcommunity.microsoft.com/t5/azure-maps/how-to-remove-highlight-on-previously-selected-feature-in/m-p/4166665#M119</link>
      <description>&lt;P&gt;I've been trying to fix the following code so that when a user clicks on a feature in the geojson data, the selected polygon is highlighted. And when user clicks on another polygon, the previously selected polygon/feature is no longer highlighted and the currently selected polygon is highlighted. Can anybody see what I'm doing wrong?&lt;/P&gt;&lt;LI-CODE lang="applescript"&gt;map.events.add('ready', function () {
    //Change the cursor of the mouse when it is over the map to be a pointer.
    map.getCanvasContainer().style.cursor = 'pointer';

    //Create a data source and add it to the map.
    ds = new atlas.source.DataSource();

    //Load jsonData file
    fetch(jsonData)
        .then(response =&amp;gt; response.json())
        .then(results =&amp;gt; {
            if (results.features[1].properties.CNTY == county_name) {
                ds.add(results.features);
            }
        })//end then
        .catch(error =&amp;gt; console.error('Error loading GeoJSON:', error));

    //Add jsonData to sources
    map.sources.add(ds);

    //Add a layer for rendering a different color polygon when clicked
    var polygonLayer = new atlas.layer.PolygonLayer(ds, null, {
        fillColor: "rgba(176,48,96, 0.5)"  //maroon
    })
    map.layers.add(polygonLayer, 'labels');

    var selectedLine = new atlas.layer.LineLayer(ds, null, {
        strokeColor: 'black',
        strokeWidth: 1
    });
    map.layers.add(selectedLine, 'labels');

    //Add click events to polygonLayer
    map.events.add('click', polygonLayer, function (e) {
        selected = e.shapes[0];

        //Add a layer for rendering a different color polygon when clicked
        var polygonClickedLayer = new atlas.layer.PolygonLayer(ds, null, {
            fillColor: 'rgb(102, 255, 0)',  //green

            //Only polygons with a "FUID" property with a value of selectedID will be rendered.
            filter: ['==', ['get', 'FUID'], selected.properties.FUID]
        })
        map.layers.add(polygonClickedLayer, 'labels');

        //Add a layer for rendering a different polygon border color when clicked
        var selectedLineLayer = new atlas.layer.LineLayer(ds, null, {
            strokeColor: 'orange',
            strokeWidth: 2,

            //Only polygons with a "FUID" property with a value of selectedID will be rendered.
            filter: ['==', ['get', 'FUID'], selected.properties.FUID]
        });
        map.layers.add(selectedLineLayer, 'labels');

        ftrCentroid = calculateFieldCentroid(selected);

        map.setCamera({
            zoom: 15,
            center: ftrCentroid
        }); 
        
    });   

});&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 12 Jun 2024 19:04:34 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/azure-maps/how-to-remove-highlight-on-previously-selected-feature-in/m-p/4166665#M119</guid>
      <dc:creator>JadedBelle</dc:creator>
      <dc:date>2024-06-12T19:04:34Z</dc:date>
    </item>
    <item>
      <title>Azure Maps not displaying on .Net Framework Web App</title>
      <link>https://techcommunity.microsoft.com/t5/azure-maps/azure-maps-not-displaying-on-net-framework-web-app/m-p/4158624#M117</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just created a subscription for Azure Maps.&amp;nbsp; I'm using Visual Studio 2019 for my web application using .Net Framework 4.8, MVC.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My references in the layout web page are:&lt;/P&gt;&lt;P&gt;&amp;lt;!--Add reference to Azure Maps--&amp;gt;&lt;BR /&gt;&amp;lt;link href="&lt;A href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.css" target="_blank"&gt;https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.css&lt;/A&gt;" rel="stylesheet" type="text/css" /&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!-- Add a reference to the Azure Maps Services SDK JavaScript file. --&amp;gt;&lt;BR /&gt;&amp;lt;script src="&lt;A href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js" target="_blank"&gt;https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js&lt;/A&gt;"&amp;gt;&amp;lt;/script&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The function to initialize the Azure Maps is:&lt;/P&gt;&lt;P&gt;function GetMap() {&lt;BR /&gt;// Initialize a map instance.&lt;BR /&gt;map = new atlas.Map('divMap', {&lt;BR /&gt;center: [39.011902, -98.484247],&lt;BR /&gt;zoom: 5,&lt;BR /&gt;view: 'Auto',&lt;/P&gt;&lt;P&gt;// Add authentication details for connecting to Azure Maps.&lt;BR /&gt;authOptions: {&lt;BR /&gt;// Use an Azure Maps key.&lt;BR /&gt;// Get an Azure Maps key at &lt;A href="https://azure.com/maps" target="_blank"&gt;https://azure.com/maps&lt;/A&gt;.&lt;BR /&gt;// NOTE: The primary key should be used as the key.&lt;BR /&gt;&lt;BR /&gt;authType: 'subscriptionKey',&lt;BR /&gt;clientId: azureMapsClientId,&lt;BR /&gt;subscriptionKey: azureKey&lt;BR /&gt;}&lt;BR /&gt;});&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why is the map not showing?&amp;nbsp; I just want to display a satellite imagery of the US as background map.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Appreciate any help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2024 16:23:21 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/azure-maps/azure-maps-not-displaying-on-net-framework-web-app/m-p/4158624#M117</guid>
      <dc:creator>JadedBelle</dc:creator>
      <dc:date>2024-06-03T16:23:21Z</dc:date>
    </item>
    <item>
      <title>Migrating from “Bing Maps” to “Azure Maps”.</title>
      <link>https://techcommunity.microsoft.com/t5/azure-maps/migrating-from-bing-maps-to-azure-maps/m-p/4150182#M115</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have just received your email announcing the end of support for “&lt;STRONG&gt;Bing Maps&lt;/STRONG&gt;” on June 30, 2025. This service is being replaced by “&lt;STRONG&gt;Azure Maps&lt;/STRONG&gt;”.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Currently &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;I use&amp;nbsp;the C# object: &lt;EM&gt;Windows.UI.Xaml.Controls.Maps.MapControl&lt;/EM&gt; ,&amp;nbsp;with the associated Xaml: &lt;EM&gt;xmlns:Maps="using:Windows.UI.Xaml.Controls.Maps" and &amp;lt;Maps:MapControl MapServiceToken="{StaticResource MapCredentials}" /&amp;gt;&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I saw that there is an &lt;EM&gt;Azure.ResourceManager.Maps&lt;/EM&gt; package but this package does not have a native component for Xaml. It looks like I need to use the WebView component ( &lt;EM&gt;&amp;lt;WebView x:Name="mapWebView" /&amp;gt;&lt;/EM&gt; ) instead.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This WebView displays an HTML page with JavaScript code that calls the &lt;A href="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js" target="_blank" rel="noopener"&gt;https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js&lt;/A&gt; code to perform authentication via a YOUR_AZURE_MAPS_KEY and displays a map to the screen.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone confirm this method of using "&lt;STRONG&gt;Azure Maps&lt;/STRONG&gt;" with a Xaml project?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;C-A&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 13:40:51 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/azure-maps/migrating-from-bing-maps-to-azure-maps/m-p/4150182#M115</guid>
      <dc:creator>COM-ADD</dc:creator>
      <dc:date>2024-05-23T13:40:51Z</dc:date>
    </item>
    <item>
      <title>3D styling for indoor maps</title>
      <link>https://techcommunity.microsoft.com/t5/azure-maps/3d-styling-for-indoor-maps/m-p/4144814#M112</link>
      <description>&lt;P&gt;Is it possible to extrude walls for an Azure indoor map so rooms give a 3D appearance in a pitch view?&lt;/P&gt;</description>
      <pubDate>Sat, 18 May 2024 09:16:49 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/azure-maps/3d-styling-for-indoor-maps/m-p/4144814#M112</guid>
      <dc:creator>Mark_Phillips</dc:creator>
      <dc:date>2024-05-18T09:16:49Z</dc:date>
    </item>
    <item>
      <title>IndoorManager tilesetId configuration</title>
      <link>https://techcommunity.microsoft.com/t5/azure-maps/indoormanager-tilesetid-configuration/m-p/4143425#M110</link>
      <description>&lt;P&gt;I've asked this question direct to a team member but thought I'd ask here too as it might benefit the community.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using azure-maps-indoor v0.2.3 and azure-maps-control v3.2.1 to attempt to render a tileset using manifest 2.0.&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;The IndoorManagerOptions has a tilesetId and this is how I have traditionally applied a tileset to the IndoorManager (v0.1.x).&amp;nbsp; The Azure map samples I am seeing now do not use this at all, and instead use mapConfiguration, domain and styleAPIVersion properties of the Map object instead.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Does this mean my original setup will not work and therefore requires me to add a pipeline step to create a MapConfiguration for my tileset?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Additional Info:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I should note that my pipeline is created using a global maps account and I still ingest data using the deprecated (but still available) data upload api, and then the conversion, dataset, tileset and routeset make use of Creator openapi spec 2023-03-01-preview (as this is a manifest 2.0 package).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I am still using a global maps account as my infrastructure uses Crossplane over Terraform providers and the azurerm provider does not support setting the required maps account properties for a data registry appropriate setup.&amp;nbsp; Of course there is an issue with Terraform for this and living in hope that it is resolved prior to the maps account data plane data api deletion deadline.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 May 2024 04:17:08 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/azure-maps/indoormanager-tilesetid-configuration/m-p/4143425#M110</guid>
      <dc:creator>Mark_Phillips</dc:creator>
      <dc:date>2024-05-17T04:17:08Z</dc:date>
    </item>
    <item>
      <title>In React (CRA) project, cannot load azure-maps-geolocation-control.js external Azure Map script</title>
      <link>https://techcommunity.microsoft.com/t5/azure-maps/in-react-cra-project-cannot-load-azure-maps-geolocation-control/m-p/4142083#M109</link>
      <description>&lt;P&gt;I am working with a CRA React project. In a React component, I have tried to import and load an external Azure Map standalone script like&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://github.com/Azure-Samples/azure-maps-geolocation-control" rel="ugc nofollow" target="_blank"&gt;azure-maps-geolocation-control&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/A&gt;which adds on to the Azure Map namespace (atlas). In this React component I have imported Azure Map SDK like azure-maps-control which works fine to render the map and supplies the namespace.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Under map ready event, I have tried to instantiate GeolocationControl object but seems like the script cannot read the atlas namespace. This external script is placed in public folder and dynamically placed in &amp;lt;head&amp;gt; of index.html .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to make the script link to Azure Map SDK namespace, in a React component? Thank you&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2024 02:22:43 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/azure-maps/in-react-cra-project-cannot-load-azure-maps-geolocation-control/m-p/4142083#M109</guid>
      <dc:creator>Joanne520</dc:creator>
      <dc:date>2024-05-16T02:22:43Z</dc:date>
    </item>
    <item>
      <title>Azure Maps Click event on a map point is getting registered twice</title>
      <link>https://techcommunity.microsoft.com/t5/azure-maps/azure-maps-click-event-on-a-map-point-is-getting-registered/m-p/4081540#M98</link>
      <description>&lt;P&gt;After reintialization of Azure Maps, when we click on any point on the Map.&lt;/P&gt;&lt;P&gt;The event is getting fired twice. Can you suggest a solution to supress the click event to get it fired twice or can we remove the multiple click handlers ?&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2024 13:34:08 GMT</pubDate>
      <guid>https://techcommunity.microsoft.com/t5/azure-maps/azure-maps-click-event-on-a-map-point-is-getting-registered/m-p/4081540#M98</guid>
      <dc:creator>KartheekKumbham</dc:creator>
      <dc:date>2024-03-11T13:34:08Z</dc:date>
    </item>
  </channel>
</rss>

