<?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 Zoom inside the loaded Dynamic Map when Location Service is OFF in ArcGIS Runtime SDK for iOS Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/zoom-inside-the-loaded-dynamic-map-when-location/m-p/739270#M6665</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have dynamic MAP loaded on Blank Map or Tiled MAP.&lt;/P&gt;&lt;P&gt;i need to Zoom in to Dynamic MAP when Location Service is OFF or when dynamic MAP looks like small dot on Blank Map.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10pt; font-family: Menlo;"&gt;have added below code from Esri sample code... but this will not zoom inside Loaded Dynamic MAP.. but will show as small dot... then need to zoom in manually TAP gesture/ touch ....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: Menlo; color: #703daa;"&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;AGSSpatialReference&lt;SPAN style="color: #000000;"&gt; *spatialReference = [&lt;/SPAN&gt;AGSSpatialReference&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #3d1d81;"&gt;wgs84SpatialReference&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: Menlo; color: #008400;"&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp; &lt;/SPAN&gt;//zoom to dynamic layer&lt;/P&gt;&lt;P style="font-size: 13px; font-family: Menlo; color: #272ad8;"&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #703daa;"&gt;AGSEnvelope&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; *envelope = [&lt;/SPAN&gt;&lt;SPAN style="color: #703daa;"&gt;AGSEnvelope&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #3d1d81;"&gt;envelopeWithXmin&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;:-&lt;/SPAN&gt;178.217598362366&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #3d1d81;"&gt;ymin&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;:&lt;/SPAN&gt;18.9247817993164&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #3d1d81;"&gt;xmax&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;:-&lt;/SPAN&gt;66.9692710360024&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #3d1d81;"&gt;ymax&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;:&lt;/SPAN&gt;71.4062353532712&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #3d1d81;"&gt;spatialReference&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;:spatialReference];&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: Menlo;"&gt;&amp;nbsp; &lt;/P&gt;&lt;P style="font-size: 13px; font-family: Menlo; color: #703daa;"&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;AGSGeometryEngine&lt;SPAN style="color: #000000;"&gt; *geometryEngine = [&lt;/SPAN&gt;AGSGeometryEngine&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #3d1d81;"&gt;defaultGeometryEngine&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #703daa;"&gt;AGSEnvelope&lt;/SPAN&gt; * webMercatorEnvelope = (&lt;SPAN style="color: #703daa;"&gt;AGSEnvelope&lt;/SPAN&gt;*) [geometryEngine &lt;SPAN style="color: #3d1d81;"&gt;projectGeometry&lt;/SPAN&gt;:envelope &lt;SPAN style="color: #3d1d81;"&gt;toSpatialReference&lt;/SPAN&gt;:&lt;SPAN style="color: #bb2ca2;"&gt;self&lt;/SPAN&gt;.&lt;SPAN style="color: #4f8187;"&gt;mapView&lt;/SPAN&gt;.&lt;SPAN style="color: #703daa;"&gt;spatialReference&lt;/SPAN&gt;];&lt;/P&gt;&lt;P style="font-size: 13px; font-family: Menlo;"&gt;&amp;nbsp; &lt;/P&gt;&lt;P style="font-size: 13px; font-family: Menlo;"&gt;&amp;nbsp; [&lt;SPAN style="color: #bb2ca2;"&gt;self&lt;/SPAN&gt;.&lt;SPAN style="color: #4f8187;"&gt;mapView&lt;/SPAN&gt; &lt;SPAN style="color: #3d1d81;"&gt;zoomToEnvelope&lt;/SPAN&gt;:webMercatorEnvelope &lt;SPAN style="color: #3d1d81;"&gt;animated&lt;/SPAN&gt;:&lt;SPAN style="color: #bb2ca2;"&gt;YES&lt;/SPAN&gt;];&lt;/P&gt;&lt;P style="font-size: 13px; font-family: Menlo;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: Menlo;"&gt;i need to zoom inside dynamic MAP....when it is loaded...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Jul 2015 19:23:58 GMT</pubDate>
    <dc:creator>GajaNaik</dc:creator>
    <dc:date>2015-07-07T19:23:58Z</dc:date>
    <item>
      <title>Zoom inside the loaded Dynamic Map when Location Service is OFF</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/zoom-inside-the-loaded-dynamic-map-when-location/m-p/739270#M6665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have dynamic MAP loaded on Blank Map or Tiled MAP.&lt;/P&gt;&lt;P&gt;i need to Zoom in to Dynamic MAP when Location Service is OFF or when dynamic MAP looks like small dot on Blank Map.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10pt; font-family: Menlo;"&gt;have added below code from Esri sample code... but this will not zoom inside Loaded Dynamic MAP.. but will show as small dot... then need to zoom in manually TAP gesture/ touch ....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: Menlo; color: #703daa;"&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;AGSSpatialReference&lt;SPAN style="color: #000000;"&gt; *spatialReference = [&lt;/SPAN&gt;AGSSpatialReference&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #3d1d81;"&gt;wgs84SpatialReference&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: Menlo; color: #008400;"&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp; &lt;/SPAN&gt;//zoom to dynamic layer&lt;/P&gt;&lt;P style="font-size: 13px; font-family: Menlo; color: #272ad8;"&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #703daa;"&gt;AGSEnvelope&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; *envelope = [&lt;/SPAN&gt;&lt;SPAN style="color: #703daa;"&gt;AGSEnvelope&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #3d1d81;"&gt;envelopeWithXmin&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;:-&lt;/SPAN&gt;178.217598362366&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #3d1d81;"&gt;ymin&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;:&lt;/SPAN&gt;18.9247817993164&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #3d1d81;"&gt;xmax&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;:-&lt;/SPAN&gt;66.9692710360024&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #3d1d81;"&gt;ymax&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;:&lt;/SPAN&gt;71.4062353532712&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #3d1d81;"&gt;spatialReference&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;:spatialReference];&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: Menlo;"&gt;&amp;nbsp; &lt;/P&gt;&lt;P style="font-size: 13px; font-family: Menlo; color: #703daa;"&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;AGSGeometryEngine&lt;SPAN style="color: #000000;"&gt; *geometryEngine = [&lt;/SPAN&gt;AGSGeometryEngine&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #3d1d81;"&gt;defaultGeometryEngine&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: Menlo;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #703daa;"&gt;AGSEnvelope&lt;/SPAN&gt; * webMercatorEnvelope = (&lt;SPAN style="color: #703daa;"&gt;AGSEnvelope&lt;/SPAN&gt;*) [geometryEngine &lt;SPAN style="color: #3d1d81;"&gt;projectGeometry&lt;/SPAN&gt;:envelope &lt;SPAN style="color: #3d1d81;"&gt;toSpatialReference&lt;/SPAN&gt;:&lt;SPAN style="color: #bb2ca2;"&gt;self&lt;/SPAN&gt;.&lt;SPAN style="color: #4f8187;"&gt;mapView&lt;/SPAN&gt;.&lt;SPAN style="color: #703daa;"&gt;spatialReference&lt;/SPAN&gt;];&lt;/P&gt;&lt;P style="font-size: 13px; font-family: Menlo;"&gt;&amp;nbsp; &lt;/P&gt;&lt;P style="font-size: 13px; font-family: Menlo;"&gt;&amp;nbsp; [&lt;SPAN style="color: #bb2ca2;"&gt;self&lt;/SPAN&gt;.&lt;SPAN style="color: #4f8187;"&gt;mapView&lt;/SPAN&gt; &lt;SPAN style="color: #3d1d81;"&gt;zoomToEnvelope&lt;/SPAN&gt;:webMercatorEnvelope &lt;SPAN style="color: #3d1d81;"&gt;animated&lt;/SPAN&gt;:&lt;SPAN style="color: #bb2ca2;"&gt;YES&lt;/SPAN&gt;];&lt;/P&gt;&lt;P style="font-size: 13px; font-family: Menlo;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: Menlo;"&gt;i need to zoom inside dynamic MAP....when it is loaded...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jul 2015 19:23:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/zoom-inside-the-loaded-dynamic-map-when-location/m-p/739270#M6665</guid>
      <dc:creator>GajaNaik</dc:creator>
      <dc:date>2015-07-07T19:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: Zoom inside the loaded Dynamic Map when Location Service is OFF</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/zoom-inside-the-loaded-dynamic-map-when-location/m-p/739271#M6666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How are you getting the coordinates you are using to create the envelope? Is it possible to share some screenshot of what you have right now and what you expect?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jul 2015 20:11:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/zoom-inside-the-loaded-dynamic-map-when-location/m-p/739271#M6666</guid>
      <dc:creator>GagandeepSingh</dc:creator>
      <dc:date>2015-07-07T20:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: Zoom inside the loaded Dynamic Map when Location Service is OFF</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/zoom-inside-the-loaded-dynamic-map-when-location/m-p/739272#M6667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i realise whats the problem here, this is link to question i had asked earlier &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/159472"&gt;Displaying Current Location on MAP, not Working (when Tiled Layer not added)&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i did workaround ..and now getting desired result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MAP was zoom on Base layer envelope and SP, base layer opacity was 0(as i was force to add Tiled Layer without requirement because issue i mentioned to Esri earlier),&lt;/P&gt;&lt;P&gt;now i am getting 1st Layer info(Dynamic Layer), using its envelope and SP to zoom to Layer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jul 2015 07:40:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/zoom-inside-the-loaded-dynamic-map-when-location/m-p/739272#M6667</guid>
      <dc:creator>GajaNaik</dc:creator>
      <dc:date>2015-07-08T07:40:56Z</dc:date>
    </item>
  </channel>
</rss>

