<?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>topic Re: Displaying coordinates on MAP in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74840#M1707</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;google's points are constructed latitude, longitude (y,x) vs ESRI's longitude, latitude (x,y).&amp;nbsp; kdiabate64&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; is correct, your coords are swapped.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 May 2014 08:43:52 GMT</pubDate>
    <dc:creator>PaulHastings1</dc:creator>
    <dc:date>2014-05-22T08:43:52Z</dc:date>
    <item>
      <title>Displaying coordinates on MAP</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74836#M1703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Greetings to all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I had been working with Google Maps for displaying coordinates till now, but then came across ARCGIS and was exited to work with this. Started a day or two ago, came across a strange behavior and i am desperate to get a work around on this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The coordinates (30.7764803800,76.0161244300) points out to place X in INDIA where as the same represents a place in AFRICA.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Looking forward to some assistance on this.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2014 06:13:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74836#M1703</guid>
      <dc:creator>AshishYadav</dc:creator>
      <dc:date>2014-05-21T06:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying coordinates on MAP</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74837#M1704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;if you posted your code it might be easier for someone to help&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2014 11:15:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74837#M1704</guid>
      <dc:creator>AaronNash1</dc:creator>
      <dc:date>2014-05-21T11:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying coordinates on MAP</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74838#M1705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You should still post your code,&amp;nbsp; but I think you are flip-flopping your coordinates. (See attachment).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]33969[/ATTACH]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2014 15:00:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74838#M1705</guid>
      <dc:creator>KomanDiabate</dc:creator>
      <dc:date>2014-05-21T15:00:44Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying coordinates on MAP</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74839#M1706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi @nasha001 @kdiabate64,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is what i have written in the code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;var myGraphicPoint:Graphic = new Graphic(new MapPoint(30.7764803800, 76.0161244300, new SpatialReference(4326)));&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myGraphicPoint.symbol = pictureMarker;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myGraphicsLayer.add(myGraphicPoint);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The X&amp;amp;Y here are static values passed as shown in the attachment shared by @kdiabate64.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I saw the attachment shared by @hdiabate64 and that is what Google Map shows at my end too but its the way around as shown in the attachment share below using ARCGIS.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Looking forward to hear from you.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 04:00:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74839#M1706</guid>
      <dc:creator>AshishYadav</dc:creator>
      <dc:date>2014-05-22T04:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying coordinates on MAP</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74840#M1707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;google's points are constructed latitude, longitude (y,x) vs ESRI's longitude, latitude (x,y).&amp;nbsp; kdiabate64&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; is correct, your coords are swapped.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 08:43:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74840#M1707</guid>
      <dc:creator>PaulHastings1</dc:creator>
      <dc:date>2014-05-22T08:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying coordinates on MAP</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74841#M1708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Paul,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Swapping the coords to&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;var myGraphicPoint:Graphic = new Graphic(new MapPoint(76.0161244300, 30.7764803800, new SpatialReference(4326)));&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;myGraphicPoint.symbol = pictureMarker;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;myGraphicsLayer.add(myGraphicPoint);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;doesn't changes anything for me... I wonder if everything else is correct or not..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Looking forward to hear from you.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 03:20:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74841#M1708</guid>
      <dc:creator>AshishYadav</dc:creator>
      <dc:date>2014-05-23T03:20:42Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying coordinates on MAP</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74842#M1709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I created a quick app and attached is a screen shot, I am experiencing the same behavior as you. The coordinates are not in the same projection as your basemap and it is causing map point be displayed in Africa. Here is some code for reprojecting a mappoint into the same coordinate system as the basemap, this should work with any basemap.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;lt;s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns:s="library://ns.adobe.com/flex/spark" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns:esri="http://www.esri.com/2008/ags"&amp;gt;&amp;nbsp; &amp;lt;s:layout&amp;gt; &amp;nbsp; &amp;lt;s:VerticalLayout horizontalAlign="center"/&amp;gt;&amp;nbsp; &amp;lt;/s:layout&amp;gt;&amp;nbsp; &amp;lt;fx:Script&amp;gt; &amp;nbsp; &amp;lt;![CDATA[ &amp;nbsp;&amp;nbsp; import com.esri.ags.Graphic; &amp;nbsp;&amp;nbsp; import com.esri.ags.Map; &amp;nbsp;&amp;nbsp; import com.esri.ags.SpatialReference; &amp;nbsp;&amp;nbsp; import com.esri.ags.events.GeometryServiceEvent; &amp;nbsp;&amp;nbsp; import com.esri.ags.geometry.MapPoint; &amp;nbsp;&amp;nbsp; import com.esri.ags.symbols.SimpleMarkerSymbol; &amp;nbsp;&amp;nbsp; import com.esri.ags.tasks.GeometryService; &amp;nbsp;&amp;nbsp; import com.esri.ags.tasks.supportClasses.ProjectParameters;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; //create the mappoint using the lat and long &amp;nbsp;&amp;nbsp; private function createPoint():void&amp;nbsp; &amp;nbsp;&amp;nbsp; {&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; var testPoint:MapPoint = new MapPoint(76.0161244300, 30.7764803800); &amp;nbsp;&amp;nbsp;&amp;nbsp; //spatial reference of the mappoint &amp;nbsp;&amp;nbsp;&amp;nbsp; testPoint.spatialReference = new SpatialReference(4326);&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; var projParams:ProjectParameters = new ProjectParameters(); &amp;nbsp;&amp;nbsp;&amp;nbsp; projParams.geometries = [testPoint]; &amp;nbsp;&amp;nbsp;&amp;nbsp; //reproject to map spatial reference &amp;nbsp;&amp;nbsp;&amp;nbsp; projParams.outSpatialReference = myMap.spatialReference; &amp;nbsp;&amp;nbsp;&amp;nbsp; geometryService.project(projParams); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; }&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; //reproject event&amp;nbsp; &amp;nbsp;&amp;nbsp; private function projectCompleteHandler(event:GeometryServiceEvent):void &amp;nbsp;&amp;nbsp; {&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; try &amp;nbsp;&amp;nbsp;&amp;nbsp; { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Note: As of version 2.0, GeometryService returns geometries (instead of graphics)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var pt:MapPoint = (event.result as Array)[0]as MapPoint; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var ptGraphic:Graphic = new Graphic(null, new SimpleMarkerSymbol(SimpleMarkerSymbol.STYLE_DIAMOND, 22, 0x009933)); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ptGraphic.geometry = pt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myGraphicsLayer.clear() &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myGraphicsLayer.add(ptGraphic); &amp;nbsp;&amp;nbsp;&amp;nbsp; } &amp;nbsp;&amp;nbsp;&amp;nbsp; catch (error:Error) &amp;nbsp;&amp;nbsp;&amp;nbsp; { &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Alert.show(error.toString()); &amp;nbsp;&amp;nbsp;&amp;nbsp; } &amp;nbsp;&amp;nbsp; }&amp;nbsp; &amp;nbsp; ]]&amp;gt;&amp;nbsp; &amp;lt;/fx:Script&amp;gt;&amp;nbsp; &amp;lt;fx:Declarations&amp;gt; &amp;nbsp; &amp;lt;esri:GeometryService id="geometryService" showBusyCursor="false" projectComplete="projectCompleteHandler(event)"&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; url="http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/Geometry/GeometryServer"/&amp;gt;&amp;nbsp; &amp;lt;/fx:Declarations&amp;gt;&amp;nbsp; &amp;lt;s:controlBarLayout&amp;gt; &amp;nbsp; &amp;lt;s:VerticalLayout gap="10" paddingBottom="7" paddingLeft="10" paddingRight="10" paddingTop="7"/&amp;gt;&amp;nbsp; &amp;lt;/s:controlBarLayout&amp;gt;&amp;nbsp; &amp;lt;s:controlBarContent&amp;gt; &amp;nbsp; &amp;lt;s:Button id="btn" click="createPoint()" label="Add some more markers using ActionScript"/&amp;gt;&amp;nbsp; &amp;lt;/s:controlBarContent&amp;gt;&amp;nbsp; &amp;lt;esri:Map id="myMap" level="2" wrapAround180="true"&amp;gt; &amp;nbsp; &amp;lt;esri:ArcGISTiledMapServiceLayer url="http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"/&amp;gt; &amp;nbsp; &amp;lt;esri:GraphicsLayer id="myGraphicsLayer"/&amp;gt;&amp;nbsp; &amp;lt;/esri:Map&amp;gt; &amp;lt;/s:Application&amp;gt;&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also built into the ESRI Flex API is the ability to translate Latitude and Longitude into webmercator without having to make a call to a geometry service. If you are using the ESRI basemaps (which are in webmercator) then here is the code to create a mappoint that will put the point where it is supposed to go&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;var testPoint:WebMercatorMapPoint = new WebMercatorMapPoint(76.0161244300, 30.7764803800);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;hope that helps&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 12:02:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74842#M1709</guid>
      <dc:creator>AaronNash1</dc:creator>
      <dc:date>2014-05-23T12:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying coordinates on MAP</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74843#M1710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If i have to display polylines using the same co-ordinates then how will i provide my co-ordinates to polyline mappoint&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is the general way of placing polyline on ArcGIS map:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
myPolyline = new Polyline([[new mapPoint(x, y), new mapPoint(x, y)]], new SpatialReference(4326));
var myGraphicLine:Graphic = new Graphic(myPolyline);
myGraphicLine.symbol = new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, 0xFF0000, 1.0, 4);
myGraphicsLayer.add(myGraphicLine);
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:54:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74843#M1710</guid>
      <dc:creator>SamarthGupta</dc:creator>
      <dc:date>2021-12-10T22:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying coordinates on MAP</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74844#M1711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;@nasha001 that was quick and awesome, sorry for replying late but it did work just smooth as i wanted it to be.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;However, i am facing another concern and seeking your or everybody's help again.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How can i connect two map points on the MAP with a polyline(as its done in Google Maps).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The following code is what i had tried:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;myPolyline = new Polyline([[new mapPoint(x, y), new mapPoint(x, y)]], new SpatialReference(4326));&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;var myGraphicLine:Graphic = new Graphic(myPolyline);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;myGraphicLine.symbol = new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, 0xFF0000, 1.0, 4);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;myGraphicsLayer.add(myGraphicLine);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2014 11:25:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74844#M1711</guid>
      <dc:creator>AshishYadav</dc:creator>
      <dc:date>2014-05-29T11:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying coordinates on MAP</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74845#M1712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;where it says new MapPoint, just put in your x and y like below. There is a good sample &lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/flex/sample-code/adding-graphics.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;here&lt;/A&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;var myPolyline:Polyline = new Polyline(
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [[
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; new MapPoint(-1726185, 9543036),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; new MapPoint(34923, 6920940),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; new MapPoint(1874303, 6255632),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; new MapPoint(1835168, 6255632),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; new MapPoint(1913439, 6138225)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ]], new SpatialReference(102100));
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var myGraphicLine:Graphic = new Graphic(myPolyline);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myGraphicLine.symbol = new SimpleLineSymbol(SimpleLineSymbol.STYLE_DASH, 0xDD2222, 1.0, 4);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myGraphicsLayer.add(myGraphicLine);
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:54:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74845#M1712</guid>
      <dc:creator>AaronNash1</dc:creator>
      <dc:date>2021-12-10T22:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying coordinates on MAP</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74846#M1713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi @nasha001,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the help again.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I had tried it out the way you have mentioned and as the link says which you suggested.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;It did worked when i had the pass the data as static as mentioned in the example.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;However, when i retrieve the data from the database and pass it through a loop it marks the point in a randomize manner.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;As the result i get a a disturbed polyline on the MAP.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Please find the attachment(i hope i am able to put my concern in front of you again).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 May 2014 09:32:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74846#M1713</guid>
      <dc:creator>AshishYadav</dc:creator>
      <dc:date>2014-05-31T09:32:30Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying coordinates on MAP</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74847#M1714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Have you looked at the &lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/flex/api-reference/com/esri/ags/geometry/Polyline.html#Polyline()"&gt;API reference&lt;/A&gt;&lt;SPAN&gt;? You can use the insertPoint method if you know the order in which the map point needs to go, or you could create an array of mappoints using the addPath method and then create the polyline. Its hard to diagnose an issue without looking at how you are creating the polyline&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jun 2014 11:54:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/displaying-coordinates-on-map/m-p/74847#M1714</guid>
      <dc:creator>AaronNash1</dc:creator>
      <dc:date>2014-06-02T11:54:38Z</dc:date>
    </item>
  </channel>
</rss>

