<?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: MGRS Coordinate Panel for Flex Viewer 3.1 in ArcGIS Viewer for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194393#M6130</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Anthony,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;This widget is great!&amp;nbsp; One question though.&amp;nbsp; Is there a way to display Lat/Long.&amp;nbsp; I see in the .mxml that its defaulted to show what ever coordinate system the base map is, but I would find Lat/Long would be more useful to the people that access my viewer.&amp;nbsp; I've tried to tell it to show "mapLat" and "mapLon" but based on the error I get, those don't appear to be defined in the code anywhere.&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, 30 Jan 2013 18:56:46 GMT</pubDate>
    <dc:creator>KennethLyons</dc:creator>
    <dc:date>2013-01-30T18:56:46Z</dc:date>
    <item>
      <title>MGRS Coordinate Panel for Flex Viewer 3.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194392#M6129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;All,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have just uploaded a widget to the gallery that displays a coordinate panel along the bottom of the application that shows Map Coordinates, MGRS and Scale. It allows provides check boxes to turn on/off both MGRS and Graticule Grids. Also includes a Zoom to MGRS Function.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Give your map tag an attribute of bottom="25" to ensure that the panel does not obscure any of the map face.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.arcgis.com/home/item.html?id=595088b5b5f94bd39d152f9176e33d6d"&gt;http://www.arcgis.com/home/item.html?id=595088b5b5f94bd39d152f9176e33d6d&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anthony&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 09:18:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194392#M6129</guid>
      <dc:creator>AnthonyGiles</dc:creator>
      <dc:date>2013-01-28T09:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: MGRS Coordinate Panel for Flex Viewer 3.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194393#M6130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Anthony,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;This widget is great!&amp;nbsp; One question though.&amp;nbsp; Is there a way to display Lat/Long.&amp;nbsp; I see in the .mxml that its defaulted to show what ever coordinate system the base map is, but I would find Lat/Long would be more useful to the people that access my viewer.&amp;nbsp; I've tried to tell it to show "mapLat" and "mapLon" but based on the error I get, those don't appear to be defined in the code anywhere.&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, 30 Jan 2013 18:56:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194393#M6130</guid>
      <dc:creator>KennethLyons</dc:creator>
      <dc:date>2013-01-30T18:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: MGRS Coordinate Panel for Flex Viewer 3.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194394#M6131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Kenneth,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I take it your application is in web mercator. The coordinates displayed are the stage x and y from the position of the mouse what you need to do is convert this from web mercator to lat long. If you have access to the source code try changing the following in the map_mouseMoveHandler function:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
if (wkid === 102100 || wkid === 102113 || wkid === 3857)
{
var pt:Point = new Point(mapPoint.x, mapPoint.y);
m_geogToProg.projectInverse(pt);
mgrs = MoreUtils.getMGRSString(pt.y, pt.x);
Mercator.WebMercator.toGeographic(pt);
coords.text = "MGRS: " + mgrs + "&amp;nbsp;&amp;nbsp; Scale: 1:" + map.scale + "\n" + "Lat: " + pt.y.toString() + "&amp;nbsp; Long: " + pt.x.toString();}
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anthony&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 16:10:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194394#M6131</guid>
      <dc:creator>AnthonyGiles</dc:creator>
      <dc:date>2021-12-12T16:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: MGRS Coordinate Panel for Flex Viewer 3.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194395#M6132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Anthony,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;That definitly changed which coordinate system is displayed, but I think there is an issue with the conversion from mercator to lat/long.&amp;nbsp; See attached screen shot.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for helping out!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2013 15:51:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194395#M6132</guid>
      <dc:creator>KennethLyons</dc:creator>
      <dc:date>2013-01-31T15:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: MGRS Coordinate Panel for Flex Viewer 3.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194396#M6133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Kenneth,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Try commenting out the line:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;m_geogToProg.projectInverse(pt);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;And see what you get&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anthony&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2013 15:56:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194396#M6133</guid>
      <dc:creator>AnthonyGiles</dc:creator>
      <dc:date>2013-01-31T15:56:19Z</dc:date>
    </item>
    <item>
      <title>Re: MGRS Coordinate Panel for Flex Viewer 3.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194397#M6134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That did it!&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the quick response.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2013 16:06:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194397#M6134</guid>
      <dc:creator>KennethLyons</dc:creator>
      <dc:date>2013-01-31T16:06:07Z</dc:date>
    </item>
    <item>
      <title>Re: MGRS Coordinate Panel for Flex Viewer 3.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194398#M6135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Anthony,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Great to see your widget is updated.&amp;nbsp; It works for me, only I cannot seem to get the MGRS Grid to display.&amp;nbsp; The lat/long grid works, but nothing happens when I click the MGRS grid box.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Marc&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;EDIT: Please disregard it is showing up now.&amp;nbsp; It didn't seem to want to show up when I had a dynamic basemap, but once I switched to a tiled map service it is showing up good as gold.&amp;nbsp; Looks great! Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2013 17:05:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194398#M6135</guid>
      <dc:creator>MarcGraham</dc:creator>
      <dc:date>2013-02-12T17:05:39Z</dc:date>
    </item>
    <item>
      <title>Re: MGRS Coordinate Panel for Flex Viewer 3.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194399#M6136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have one other problem, I can't seem to get it to show geo or dms coordinates, no matter what option I choose in the config.xml it will only show web mercator.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you tell me if there is anything I can do to fix this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Marc&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2013 01:35:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194399#M6136</guid>
      <dc:creator>MarcGraham</dc:creator>
      <dc:date>2013-02-13T01:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: MGRS Coordinate Panel for Flex Viewer 3.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194400#M6137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Marc,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, sorry this is an old tag that has been left in from when I amended the original coordinate widget, it will have no effect on the widget now.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you want to display geo instead of web Mercator and you have the ability to amend the source code follow the steps above&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sorry for the error &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anthony&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2013 15:13:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194400#M6137</guid>
      <dc:creator>AnthonyGiles</dc:creator>
      <dc:date>2013-02-13T15:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: MGRS Coordinate Panel for Flex Viewer 3.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194401#M6138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Anthony,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When using the "Go to MGRS:" function, where would I add a flash icon that shows where the exact location is at, similair to the CoordinateCopyWidget - helper.showGraphicAsCopied(this.mapPoint)?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Respectfully,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Dan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jul 2013 08:10:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194401#M6138</guid>
      <dc:creator>DanielBerry</dc:creator>
      <dc:date>2013-07-26T08:10:21Z</dc:date>
    </item>
    <item>
      <title>Re: MGRS Coordinate Panel for Flex Viewer 3.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194402#M6139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Daniel,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It already shows where the grid is by the form of a rectangle. If you only type in a 6 figure grid the rectangle will be 1km square, if you type in a 10 figure grid it will be 1m square,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anthony&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Jul 2013 13:01:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194402#M6139</guid>
      <dc:creator>AnthonyGiles</dc:creator>
      <dc:date>2013-07-26T13:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: MGRS Coordinate Panel for Flex Viewer 3.1</title>
      <link>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194403#M6140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;All,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have just updated the MGRS coordinate panel widget to 3.4&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.arcgis.com/home/item.html?id=595088b5b5f94bd39d152f9176e33d6d"&gt;http://www.arcgis.com/home/item.html?id=595088b5b5f94bd39d152f9176e33d6d&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anthony&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Aug 2013 08:28:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-viewer-for-flex-questions/mgrs-coordinate-panel-for-flex-viewer-3-1/m-p/194403#M6140</guid>
      <dc:creator>AnthonyGiles</dc:creator>
      <dc:date>2013-08-06T08:28:13Z</dc:date>
    </item>
  </channel>
</rss>

