Forum Widgets
Latest Discussions
Azure Maps computeBestOrder=true returns wrong originalWaypointIndexAtEndOfLeg values
Hi. 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 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. Example. computeBestOrder=true routetype=shortest query= while the list of the Legs is correct, the originalWaypointIndexAtEndOfLeg property is not. So according to the JSON results from the API (the system ignores Origin and Final Destination so is 0 based list of Waypoints) 0 -> 3 (Is true) 1 -> 2 (Is false, is actually 1 -> 4) 2 -> 0 (Is false, is actually 2 -> 2) - example bellow 3 -> 1 (Is true) 4 -> 4 (Is false, is actually 4 -> 5) 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. Is there something wrong with the service or the interpretation by myself and DevExpress is not correct when reading the originalWaypointIndexAtEndOfLeg values? If you have any queries, ορ requiring more information please let me know. Thank you.PanosTMar 04, 2025Copper Contributor32Views0likes0CommentsUsing Azure Maps in ArcGIS and QGIS
Azure Maps allows you to create location-aware web and mobile applications using simple and secure geospatial services, APIs, and SDKs in Azure. It includes services for maps, traffic, search, routing, spatial operations, mobility, weather, etc. See here for more information. With that said, moving to the cloud can be a huge shift. You have to learn how Microsoft Azure works, learn dozens of new services, change how an organization budgets, build cloud apps, etc. It’s a daunting task so in this article I’m going to show how you can bring the cloud to your existing GIS using a few very simple steps. I’m going to show how to display the Azure Maps base maps in ArcGIS Online, ArcGIS Pro and QGIS. Obtain your Azure Maps account key The first thing you need to do is get your Azure subscription. Follow the steps here for a $200 credit or buy a subscription. Once you have a subscription, you can now create an Azure Maps account by following these instructions. Once you have your Azure Maps account, get your Primary Key from the Azure Portal as described here. Note it because you’ll need it in later steps. You now have an account and a key to start using Azure Maps in ArcGIS or QGIS. Using Azure Maps in ArcGIS Online You are now ready to use the Azure Maps base maps in ArcGIS Online but first let’s review what kind of base maps are available. Azure Maps has several map styles which are referred to as basemaps in ArcGIS. See this document for a description of each one. However, to use an Azure Maps map you will need to refer to it via a URL when adding a tiled layer. The Azure Maps Render API is described here. The URL will look like this and please make sure you are using the latest version of the API as the version date in bold will change as new versions are released: https://atlas.microsoft.com/map/tile?api-version=2024-04-01&tilesetId=microsoft.imagery&zoom={z}&x={x}&y={y}&subscription-key=xxxxxxxxxxx In order to actually use the map, you’ll need to provide a TilesetId and also a subscription key (Primary Key). The TilesetID list is located near the bottom of this page and listed here for reference but be sure to look at our latest documentation as these options may change: Name Type Description microsoft.base string A base map is a standard map that displays roads, natural and artificial features along with the labels for those features in a vector tile. Supports zoom levels 0 through 22. Format: vector (pbf). microsoft.base.darkgrey string All layers with our dark grey style. Supports zoom levels 0 through 18. Format: raster (png). microsoft.base.hybrid string Displays road, boundary and label data in a vector tile. Supports zoom levels 0 through 22. Format: vector (pbf). microsoft.base.hybrid.road string Road, boundary and label data in our main style. Supports zoom levels 0 through 18. Format: raster (png). microsoft.base.labels string Displays labels for roads, natural and artificial features in a vector tile. Supports zoom levels 0 through 22. Format: vector (pbf). microsoft.base.labels.road string Label data in our main style. Supports zoom levels 0 through 18. Format: raster (png). microsoft.base.road string All layers with our main style. Supports zoom levels 0 through 18. Format: raster (png). microsoft.imagery string A combination of satellite and aerial imagery. Only available in S1 pricing SKU. Supports zoom levels 1 through 19. Format: raster (jpeg). microsoft.terra.main string Shaded relief and terra layers. Supports zoom levels 0 through 6. Format: raster (png). microsoft.weather.infrared.main string Weather infrared tiles. Latest Infrared Satellite images shows clouds by their temperature. Please see coverage information for Azure Maps Weather service. To learn more about the returned Satellite data, please see Weather concepts. Supports zoom levels 0 through 15. Format: raster (png). microsoft.weather.radar.main string Weather radar tiles. Latest weather radar images including areas of rain, snow, ice and mixed conditions. Please see coverage information for Azure Maps Weather service. To learn more about the Radar data, please see Weather concepts. Supports zoom levels 0 through 15. Format: raster (png). To use one of these styles you’ll need to pass in the TilesetID and your Primary Key as shown here: https://atlas.microsoft.com/map/tile?zoom={z}&x={x}&y={y}&tilesetId=microsoft.imagery&api-version=<date>&subscription-key=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Be sure to replace those Xs with your Azure Maps account Primary Key you noted earlier. To use one of the styles you will need to create a new map in ArcGIS Online. See here. From ArcGIS Online click the Add button and then click Add Layer from Web. Select A Tile Layer from the dropdown option. Paste in the URL we just created. Click Use as Basemap (optional). Enter a title such as “Azure Maps Imagery” and the credits would be “© TomTom, Microsoft”. See here: The imagery should appear on the map. You can now add other layers and other content to your map. For example, to use the weather data add another layer and pass in the following URL: https://atlas.microsoft.com/map/tile?zoom={z}&x={x}&y={y}&tilesetId=microsoft.weather.radar.main&api-version=<date>&subscription-key=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX To use this map in ArcGIS Pro, be sure to save the map. Use the imagery in ArcGIS Pro Now that you have a map with an Azure Maps map, you can now use it in ArcGIS Pro. See the section called Add a web map or web scene to the project here. Use Azure Maps in QGIS Another option is to use Azure Maps in Quantum GIS (QGIS). This too is a very easy task. Open QGIS and under the Browser window right-click on XYZ Tile and click New Connection… and enter in a Name such as Imagery and pass in any one of the previous URLs. Click OK. Double-click the layer to add it to the Layers Panel. Re-order the layers as necessary. The results will be added to the map as shown here: Happy mapping. Please provide any feedback below.Ron VincentJan 29, 2025Microsoft7.9KViews1like0CommentsAndroid SDK BoundingBox padding works different than the padding from web sdk?
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 in absolute directions, regardless of the map's bearing. Has anyone encountered this or anyone know any tips for this? Thanks!adrian23135Jul 03, 2024Copper Contributor363Views0likes0Comments3D styling for indoor maps
Is it possible to extrude walls for an Azure indoor map so rooms give a 3D appearance in a pitch view?Mark_PhillipsMay 18, 2024Copper Contributor242Views0likes0Commentsno funciona el html
Dios con nosotros. <body> <font style="BACKGROUND-COLOR: green"><font color="lime">€</font><font color="fuchsia">¢</font><font color="blue">™</font><font color="red">©</font><font color="white">¥</font><font color="gray">£</font></font> </body> <a href="https://drive.google.com/file/d/1qrPcmkx4hSZVkkhxmH1uee18Vaeatn7H/view?usp=sharing" target="_blank" rel="nofollow">Forlamgs antiguo este es la radio para alabar a Jah Dios Jehová Espíritu Santa recuerden que ustedes trajieron ese libro y pague la iglesia a ustedes si no descargan este archivo no son mis amigos o amigas en la radio unos sms click aqui</a> <body> <font style="BACKGROUND-COLOR: yellow" color="aqua" size="7">Dios, <font color="red">Dios, </font><font color="fuchsia">Dios, </font><font color="green">Dios, </font><font color="olive">Dios, </font><font color="navy">Dios, </font><font color="blue">Dios, </font><font color="teal">Dios,</font><font color="purple"> Dios.</font></font> <font style="BACKGROUND-COLOR: red" color="silver" size="7">Dios<font style="BACKGROUND-COLOR: red">, <font color="gray">Dios, </font><font color="aqua">Dios, </font><font color="navy">Dios, </font><font color="fuchsia">Dios, </font><font color="lime">Dios, </font><font color="maroon">Dios, </font><font color="blue">Dios, </font><font color="green">Dios.</font></font></font> <font style="BACKGROUND-COLOR: blue" color="#008000" size="7">Dios, <font color="lime">Dios, </font><font color="purple">Dios, </font><font style="BACKGROUND-COLOR: blue" color="red">Dios, <font color="yellow">Dios, </font><font color="aqua">Dios, </font><font color="olive">Dios, </font><font color="fuchsia">Dios, </font><font color="gray">Dios.</font></font></font> <font style="BACKGROUND-COLOR: purple" color="gray" size="7">Dios, <font color="green">Dios, </font><font color="lime">Dios, </font><font color="aqua">Dios, </font><font color="blue">Dios, </font><font color="yellow">Dios, </font><font color="red">Dios, </font><font color="#ff6633">Dios, </font><font color="blue">Dios.</font></font> <font style="BACKGROUND-COLOR: green" color="#0000ff" size="7">Dios, <font color="red">Dios, </font><font color="white">Dios, </font><font color="black">Dios, </font><font color="fuchsia">Dios, </font><font color="#ff6633">Dios, </font><font color="gray">Dios, </font><font color="purple">Dios, </font><font color="aqua">Dios.</font></font> <font style="BACKGROUND-COLOR: fuchsia" color="#00ffff" size="7">Dios, <font color="red">Dios, </font><font color="purple">Dios, </font><font color="gray">Dios, </font><font color="white">Dios, </font><font color="blue">Dios, </font><font color="teal">Dios, </font><font color="green">Dios, </font><font color="lime">Dios.</font></font> <font style="BACKGROUND-COLOR: #ff6633" color="lime" size="7">Dios, <font color="green">Dios, </font><font color="blue">Dios, </font><font color="red">Dios, </font><font color="aqua">Dios, </font><font color="gray">Dios, </font><font color="fuchsia">Dios, </font><font style="BACKGROUND-COLOR: #ff6633" color="purple">Dios, <font color="yellow">Dios.</font></font></font> </body><a href="https://ricardo-1986-forev.wixsite.com/misitio-2" target="_blank">Alaba a Jah, link para escuchar musica y chat</a> <body> <font style="BACKGROUND-COLOR: #9933cc" color="white">Dios bendice nuestro pan del Dia, asi somos tu criaturas, bendice a nuestros hijos eh hijas, que todo este bien y sano y con muchas fuerzas para el trabajo, toni13.</font> <font style="BACKGROUND-COLOR: lime" color="red">Esto es el supermercado richi alianza con Despenza rocio quien es el mejor la mejor despenza, yo soy richi un ingeniero sin <font color="purple">titJahulos</font> pero intentando por mis medios darte lo mejor del trigo.</font> <font style="BACKGROUND-COLOR: fuchsia" color="blue">Jehová ten misericordia de mi por que soy un pecador, yo se que no soy nada no tengo trabajo, me queda satisfacer la despenzax del bien de la sabiduria.</font> <font style="BACKGROUND-COLOR: yellow" color="green">Hija hijo esto es html, si falla es que no entiendo mucho, sera la ciembra para la comida y eh bevidas de lo que costara mas varato comer hasta ser saciado.</font> <font style="BACKGROUND-COLOR: #ffff00" color="#008000">quiero enviar un saludo a la rockandpop.com.py una radio 955mhz fm pero ellos pasan futbol y dios dijo no a eso.</font> <font style="BACKGROUND-COLOR: navy" color="maroon">En el nombre de mi dios el alticimo te bendigo con lo mejor del trigo y del pan para que seas satisfecho asi.</font> <font style="BACKGROUND-COLOR: #ff6633" color="#800000">Jah Dios te alabare por lo grande que es tu nombre y digna de alabanza segun Dios eres top y me gusta alabarte y es de lo mejor. Oración pidiendo la victoria Al músico principal. Salmo de David. 20 Jehová te oiga en el día de conflicto; El nombre del Dios de Jacob te defienda. 2 Te envíe ayuda desde el santuario, Y desde Sion te sostenga. 3 Haga memoria de todas tus ofrendas, Y acepte tu holocausto. Selah 4 Te dé conforme al deseo de tu corazón, Y cumpla todo tu consejo. 5 Nosotros nos alegraremos en tu salvación, Y alzaremos pendón en el nombre de nuestro Dios; Conceda Jehová todas tus peticiones. 6 Ahora conozco que Jehová salva a su ungido; Lo oirá desde sus santos cielos Con la potencia salvadora de su diestra. 7 Estos confían en carros, y aquellos en caballos; Mas nosotros del nombre de Jehová nuestro Dios tendremos memoria. 8 Ellos flaquean y caen, Mas nosotros nos levantamos, y estamos en pie. 9 Salva, Jehová; Que el Rey nos oiga en el día que lo invoquemos. </font> </body> <div class="separator" style="clear: both;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFtOEYWSRzDSRtYwaI3uoC2brqLafoXkhWStZ5NxHg4UVqvPd1XnLtEhCZUlgLEnrNhQ3n4Oj0RzwNr0J8F76YbX-fuTwlKETC41MM3KRB4rzlG-Jd3X0CtBaOoblxf2WDRmhFMDlVpsTX3iqVsCfBQZE65JeqqQOJ-f8bqqYodh3tXhsM-zNIdU9Q9w/s320/air%20gif.gif" style="display: block; padding: 1em 0; text-align: center; clear: right; float: right;"><img alt="" border="0" width="400" data-original-height="240" data-original-width="320" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFtOEYWSRzDSRtYwaI3uoC2brqLafoXkhWStZ5NxHg4UVqvPd1XnLtEhCZUlgLEnrNhQ3n4Oj0RzwNr0J8F76YbX-fuTwlKETC41MM3KRB4rzlG-Jd3X0CtBaOoblxf2WDRmhFMDlVpsTX3iqVsCfBQZE65JeqqQOJ-f8bqqYodh3tXhsM-zNIdU9Q9w/s400/air%20gif.gif"/></a></div> <div class="separator" style="clear: both;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjKOTcRKu1XxUfvcOM_-U3VWo2ZlAbbhXi_slhBhJy5zwLGdtDESsMoObdMGxKjjLA2UKh4-czLkebrRbs0d5Zd4WT8d9PQzj1jjuFJSFQTWhefzz2PSPkSc2nXF82Q_eFjunElPHO-E-nkJyXs3qBVCC6gv754pVCu_oLUUy5VuMDzZVAaHUNsfwIlhQ/s1600/avion%20verde%20shadow.png" style="display: block; padding: 1em 0; text-align: center; "><img alt="" border="0" data-original-height="768" data-original-width="1360" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjKOTcRKu1XxUfvcOM_-U3VWo2ZlAbbhXi_slhBhJy5zwLGdtDESsMoObdMGxKjjLA2UKh4-czLkebrRbs0d5Zd4WT8d9PQzj1jjuFJSFQTWhefzz2PSPkSc2nXF82Q_eFjunElPHO-E-nkJyXs3qBVCC6gv754pVCu_oLUUy5VuMDzZVAaHUNsfwIlhQ/s1600/avion%20verde%20shadow.png"/></a></div> <body> <font style="BACKGROUND-COLOR: lime" color="teal">El amor es</font> <font style="BACKGROUND-COLOR: blue" color="green">con los amigos</font><font style="BACKGROUND-COLOR: #ff6633" color="red"> y</font> <font style="BACKGROUND-COLOR: yellow" color="aqua">amigas,</font> </body> Unión Banco © <font size="7"><font style="BACKGROUND-COLOR: silver" color="lime">♬</font><font style="BACKGROUND-COLOR: #ff6633" color="#990099">∞</font><font style="BACKGROUND-COLOR: black" color="white">;</font><font style="BACKGROUND-COLOR: olive">E</font><font style="BACKGROUND-COLOR: navy" color="fuchsia">S</font><font style="BACKGROUND-COLOR: yellow" color="red">♫</font></font> <p> </p> <font color="#FF00CC" style="background-color: rgb(255, 0, 0);">Dios</font> <on> <TITLE>•Jesús Cristoº</TITLE> <body bgcolor="#0000FF"> <select name="richi" size="8" multiple> <option value="1" SELECTED>Value 1</option><option value="2">Value 2</option> </select> <audio autoplay controls mediagroup="richi" contextmenu="true" itemid="play"></audio> <audio controls="controls"> <source src="file.mp3" type="audio/mp3" /> <source src="file.ogg" type="audio/ogg" /> </audio> <INPUT TYPE=FILE NAME="File Selection 1" SIZE=29 STYLE="float: left; width: 8.2cm; height: 1cm"> <FORM METHOD=post ACTION="Submit"> </INPUT> <TEXTAREA ROWS=8 COLS=80> </TEXTAREA> <INPUT TYPE=submit VALUE="Submit"> <P><INPUT TYPE=BUTTON NAME="REFRESH" VALUE="REFRESH" STYLE="width: 1.5cm; height: 0.89cm"> <INPUT TYPE=BUTTON NAME="DELETE" VALUE="DELETE" STYLE="width: 1.5cm; height: 1cm"> <INPUT TYPE=BUTTON NAME="NEW" VALUE="NEW" STYLE="width: 1cm; height: 1cm"> <INPUT TYPE=BUTTON NAME="UNDO" VALUE="UNDO" STYLE="width: 1cm; height: 1cm"> <INPUT TYPE=BUTTON NAME="SAVE" VALUE="SAVE" STYLE="width: 1cm; height: 1cm"> <INPUT TYPE=BUTTON NAME="OPEN" VALUE="OPEN" STYLE="width: 1cm; height: 1cm"> <INPUT TYPE=BUTTON NAME="NEWT" VALUE="NEWT" STYLE="width: 1.5cm; height: 1cm"> <INPUT TYPE=BUTTON NAME="LAST" VALUE="LAST" STYLE="width: 1cm; height: 0.79cm"> <INPUT TYPE=RESET NAME="RESET" VALUE="RESET" STYLE="width: 1cm; height: 0.69cm"> <INPUT TYPE=BUTTON NAME="PESCADO" VALUE="PESCADO" STYLE="width: 2cm; height: 0.5cm"> <INPUT TYPE=BUTTON NAME="COMPRADO" VALUE="COMPRADO" STYLE="width: 2cm; height: 1.04cm"> <INPUT TYPE=SUBMIT NAME="SUBMIT" VALUE="SUBMIT" STYLE="width: 1.5cm; height: 0.81cm"></P> DIOS ayudame. 20000<input type="Radio" accesskey="" tabindex="Union Banco ©" title="FFAA ©" id="₲20000₲" name="₲2000000₲" /> <input type="submit" value="Submit" name="Aceptar"> 300000<input type="Radio" accesskey="" tabindex="Union Banco ©" title="FFAA ©" id="₲300000₲" name="₲300000₲" /> <input type="submit" value="Submit" name="Aceptar"> 600000<input type="Radio" accesskey="" tabindex="Union Banco ©" title="FFAA ©" id="₲600000₲" name="₲600000₲" /> <input type="submit" value="Submit" name="Aceptar"> 3000000<input type="Radio" accesskey="" tabindex="Union Banco ©" title="FFAA ©" id="₲3000000₲" name="₲3000000₲" /> <input type="submit" value="Submit" name="Aceptar"> 8000000<input type="Radio" accesskey="" tabindex="Union Banco ©" title="FFAA ©" id="₲8000000₲" name="₲8000000₲" /> <input type="submit" value="Submit" name="Aceptar"> 110000000<input type="Radio" accesskey="" tabindex="Union Banco ©" title="FFAA ©" id="₲110000000₲" name="₲110000000₲" /> <input type="submit" value="Submit" name="Aceptar"> 550000000<input type="Radio" accesskey="" tabindex="Union Banco ©" title="FFAA ©" id="₲550000000₲" name="₲550000000₲" /> <input type="submit" value="Submit" name="Aceptar"> <font style="BACKGROUND-COLOR: #009900" color="yellow">Jehová Jah Dios Deus Espíritu Santa ♬∞;Es♫:tulip::bouquet: Ricardo richi.</font> <a href="https://www.facebook.com/ricardo.richi1786" target="_blank" rel="nofollow">facebook.com/ricardo.richi1786</a> <blockquote class="twitter-tweet"><p lang="und" dir="ltr">♬∞;Es♫:tulip::bouquet:</p>— Ricardo (@Ricardo21887930) <a href="https://twitter.com/Ricardo21887930/status/1543383277716885506?ref_src=twsrc%5Etfw">July 2, 2022</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>ricacc745Jul 10, 2022Copper Contributor619Views0likes0CommentsAzure Maps - services not available
Since a few days we regularly receive the following message on api (get /route/directions) : <title>AzureMaps</title></head><body><div id='content'><div id='message'> <h2>Our services aren't available right now</h2> <p>We're working to restore all services as soon as possible. Please check back soon. Any idea when this is completely solved again ?Philip_FonckeMar 22, 2022Copper Contributor1.3KViews0likes0Comments'NO_ROUTE_FOUND' error when using truck or car as travelmode
Error when using https://atlas.microsoft.com/route/directions/json?&subscription-key=xxxxxxx&api-version=1.0&language=nl-BE&maxAlternatives=5&travelMode=truck&query=50.70012%2c3.26978:51.043181141774%2c4.0974215693209945 with mode 'bicycle' it works fine.Philip_FonckeJan 25, 2022Copper Contributor605Views0likes0CommentsIssue with KML display on Azure Maps
Hi, Our company is looking to utilise the Atlas Spatial IO Module as part of Azure Maps in order to allow users to upload their own KML/KMZ files and view them through our platform. However, we have a few issues which I was hoping that you could please assist with: 1. Certain KML/KMZ files which are generated from the Google Earth Desktop version are unable to be properly loaded by the Spatial IO Module. I've attached a copy of a KMZ (crash.kmz.zip - I had to rename it to .zip to upload the file) which exhibits this behavior. Attempting to load it onto the sample shown here results in an infinite loading sequence along with the following message being thrown in the console: DataCloneError: The object could not be cloned. We believe this is being caused by the empty <Icon> XML tags which are automatically generated by Google Earth. 2. We are also unable to properly load external icons which come from Google Earth despite adding in the correct CSP policies in our application. The default fallback icon is used instead. I've attached a copy of a KML file which is unable to load the icons; the same file in Leaflet correctly displays the icons used as shown in the images below. I also attached a copy of this KML file below (2007SanDiegoCountyFiresZipped.zip). In addition, logging the output of the read() function in the Spatial IO Module for the file has the icons property as empty. If you could please provide some assistance that would be much appreciated. Thanks!aleungloraOct 22, 2021Copper Contributor798Views0likes0CommentsHow to change background color of differnent countries in azure maps
I want to change the background color of Europe, America, and China with orange, blue, and red respectively. I have searched azure maps document and their demo example and I didn't find the answer. By default, all countries background color is in white color but I want to change it. Is it possible? If yes please help me. Thank You in AdvancePavanBNAug 25, 2021Copper Contributor758Views0likes0Comments
Resources
Tags
- azure maps8 Topics
- Azure Pricing1 Topic
- Address Search API1 Topic
- Formatted Address1 Topic
- azure animation maps1 Topic
- PowerApps1 Topic
- iot1 Topic
- ssis1 Topic
- PowerPlatform1 Topic
- geolocation1 Topic