<?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 Obtaining XY coordinate when clicking on the map in Developers Questions</title>
    <link>https://community.esri.com/t5/developers-questions/obtaining-xy-coordinate-when-clicking-on-the-map/m-p/468728#M3141</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #242729; background-color: #f9f8f6;"&gt;When I click on the map, I want to get the coordinates, but I get strange coordinates. I work in Arcglobe, and I need latitude and longitude, and instead of them strange values, for example, I got the values long 447 and lat 247, but these are not coordinates of latitude and longitude.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/512971_3.png" /&gt;&lt;/P&gt;&lt;PRE class="" style="color: var(--highlight-color); background-color: var(--highlight-bg); border: 0px; padding: 12px;"&gt;&lt;CODE style="background-color: transparent; border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;class&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;ToolClass2&lt;/SPAN&gt;(object):&lt;/SPAN&gt;    &lt;SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;"&gt;"""Implementation for coord_addin.tool (Tool)"""&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;__init__&lt;/SPAN&gt;(self):&lt;/SPAN&gt;        self.enabled = &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;True&lt;/SPAN&gt;        self.shape = &lt;SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;"&gt;"NONE"&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-comment); border: 0px; font-weight: inherit; font-size: 13px;"&gt;# Can set to "Line", "Circle" or "Rectangle" for interactive shape drawing and to activate the onLine/Polygon/Circle event sinks.&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onMouseDown&lt;/SPAN&gt;(self, x, y, button, shift):&lt;/SPAN&gt;        #pythonaddins.MessageBox(&lt;SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;"&gt;"Long"&lt;/SPAN&gt; + &lt;SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;"&gt;" "&lt;/SPAN&gt; + str(x) + &lt;SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;"&gt;'\n'&lt;/SPAN&gt;+ &lt;SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;"&gt;"Lat"&lt;/SPAN&gt;+ &lt;SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;"&gt;" "&lt;/SPAN&gt; + str(y), &lt;SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;"&gt;'Coordinates'&lt;/SPAN&gt;, &lt;SPAN class="" style="color: var(--highlight-namespace); border: 0px; font-weight: inherit; font-size: 13px;"&gt;0&lt;/SPAN&gt;)         &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onMouseDownMap&lt;/SPAN&gt;(self, x, y, button, shift):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-comment); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pythonaddins.MessageBox("Long" + " " + str(x) + '\n'+ "Lat"+ " " + str(y), 'Coordinates', 0)&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onMouseUp&lt;/SPAN&gt;(self, x, y, button, shift):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onMouseUpMap&lt;/SPAN&gt;(self, x, y, button, shift):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onMouseMove&lt;/SPAN&gt;(self, x, y, button, shift):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onMouseMoveMap&lt;/SPAN&gt;(self, x, y, button, shift):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onDblClick&lt;/SPAN&gt;(self):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onKeyDown&lt;/SPAN&gt;(self, keycode, shift):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onKeyUp&lt;/SPAN&gt;(self, keycode, shift):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;deactivate&lt;/SPAN&gt;(self):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onCircle&lt;/SPAN&gt;(self, circle_geometry):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onLine&lt;/SPAN&gt;(self, line_geometry):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onRectangle&lt;/SPAN&gt;(self, rectangle_geometry):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Nov 2020 06:50:14 GMT</pubDate>
    <dc:creator>АйратШакиров</dc:creator>
    <dc:date>2020-11-10T06:50:14Z</dc:date>
    <item>
      <title>Obtaining XY coordinate when clicking on the map</title>
      <link>https://community.esri.com/t5/developers-questions/obtaining-xy-coordinate-when-clicking-on-the-map/m-p/468728#M3141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #242729; background-color: #f9f8f6;"&gt;When I click on the map, I want to get the coordinates, but I get strange coordinates. I work in Arcglobe, and I need latitude and longitude, and instead of them strange values, for example, I got the values long 447 and lat 247, but these are not coordinates of latitude and longitude.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/512971_3.png" /&gt;&lt;/P&gt;&lt;PRE class="" style="color: var(--highlight-color); background-color: var(--highlight-bg); border: 0px; padding: 12px;"&gt;&lt;CODE style="background-color: transparent; border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;class&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;ToolClass2&lt;/SPAN&gt;(object):&lt;/SPAN&gt;    &lt;SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;"&gt;"""Implementation for coord_addin.tool (Tool)"""&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;__init__&lt;/SPAN&gt;(self):&lt;/SPAN&gt;        self.enabled = &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;True&lt;/SPAN&gt;        self.shape = &lt;SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;"&gt;"NONE"&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-comment); border: 0px; font-weight: inherit; font-size: 13px;"&gt;# Can set to "Line", "Circle" or "Rectangle" for interactive shape drawing and to activate the onLine/Polygon/Circle event sinks.&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onMouseDown&lt;/SPAN&gt;(self, x, y, button, shift):&lt;/SPAN&gt;        #pythonaddins.MessageBox(&lt;SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;"&gt;"Long"&lt;/SPAN&gt; + &lt;SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;"&gt;" "&lt;/SPAN&gt; + str(x) + &lt;SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;"&gt;'\n'&lt;/SPAN&gt;+ &lt;SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;"&gt;"Lat"&lt;/SPAN&gt;+ &lt;SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;"&gt;" "&lt;/SPAN&gt; + str(y), &lt;SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;"&gt;'Coordinates'&lt;/SPAN&gt;, &lt;SPAN class="" style="color: var(--highlight-namespace); border: 0px; font-weight: inherit; font-size: 13px;"&gt;0&lt;/SPAN&gt;)         &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onMouseDownMap&lt;/SPAN&gt;(self, x, y, button, shift):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-comment); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pythonaddins.MessageBox("Long" + " " + str(x) + '\n'+ "Lat"+ " " + str(y), 'Coordinates', 0)&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onMouseUp&lt;/SPAN&gt;(self, x, y, button, shift):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onMouseUpMap&lt;/SPAN&gt;(self, x, y, button, shift):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onMouseMove&lt;/SPAN&gt;(self, x, y, button, shift):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onMouseMoveMap&lt;/SPAN&gt;(self, x, y, button, shift):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onDblClick&lt;/SPAN&gt;(self):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onKeyDown&lt;/SPAN&gt;(self, keycode, shift):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onKeyUp&lt;/SPAN&gt;(self, keycode, shift):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;deactivate&lt;/SPAN&gt;(self):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onCircle&lt;/SPAN&gt;(self, circle_geometry):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onLine&lt;/SPAN&gt;(self, line_geometry):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;    &lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"&gt;&lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;def&lt;/SPAN&gt; &lt;SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;"&gt;onRectangle&lt;/SPAN&gt;(self, rectangle_geometry):&lt;/SPAN&gt;        &lt;SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;"&gt;pass&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2020 06:50:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/obtaining-xy-coordinate-when-clicking-on-the-map/m-p/468728#M3141</guid>
      <dc:creator>АйратШакиров</dc:creator>
      <dc:date>2020-11-10T06:50:14Z</dc:date>
    </item>
  </channel>
</rss>

