<?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 Automatic Map Rotation and Scale in ArcPad Questions</title>
    <link>https://community.esri.com/t5/arcpad-questions/automatic-map-rotation-and-scale/m-p/505668#M3682</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've been working on an aerial survey application, and was able to get out for a test flight last week.&amp;nbsp; In order to help orient the observer to the real world, it seems like enabling automatic map rotation would be a good feature.&amp;nbsp; However, when ArcPad automatically pans to keep the aircraft location on screen, it occasionally changes the map scale (and it always zooms out).&amp;nbsp; I've been unable to find any documentation on this feature, so it's not clear how to control it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does anyone have any experience or insights on this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Doug&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Jun 2010 16:45:21 GMT</pubDate>
    <dc:creator>DouglasBurn</dc:creator>
    <dc:date>2010-06-01T16:45:21Z</dc:date>
    <item>
      <title>Automatic Map Rotation and Scale</title>
      <link>https://community.esri.com/t5/arcpad-questions/automatic-map-rotation-and-scale/m-p/505668#M3682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've been working on an aerial survey application, and was able to get out for a test flight last week.&amp;nbsp; In order to help orient the observer to the real world, it seems like enabling automatic map rotation would be a good feature.&amp;nbsp; However, when ArcPad automatically pans to keep the aircraft location on screen, it occasionally changes the map scale (and it always zooms out).&amp;nbsp; I've been unable to find any documentation on this feature, so it's not clear how to control it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does anyone have any experience or insights on this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Doug&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jun 2010 16:45:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/automatic-map-rotation-and-scale/m-p/505668#M3682</guid>
      <dc:creator>DouglasBurn</dc:creator>
      <dc:date>2010-06-01T16:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Map Rotation and Scale</title>
      <link>https://community.esri.com/t5/arcpad-questions/automatic-map-rotation-and-scale/m-p/505669#M3683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;same thing is happening to us, as well.&amp;nbsp; we're running a custom app written by an arcpad programmer, but not sure it has anything to do with the app.&amp;nbsp; when the app was removed from applets, we still had the phantom zoom issue.&amp;nbsp; we are running arcpad 8.0 on laptops with win xp, external gps, aerial photos in a custom projection (also could be the culprit) and 3 .shp files running as a floating map.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jun 2010 14:37:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/automatic-map-rotation-and-scale/m-p/505669#M3683</guid>
      <dc:creator>CalCrawford</dc:creator>
      <dc:date>2010-06-07T14:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Map Rotation and Scale</title>
      <link>https://community.esri.com/t5/arcpad-questions/automatic-map-rotation-and-scale/m-p/505670#M3684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Doug&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What version of ArcPad are you using?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This used to be a problem in version 7.xx and I really hoped that this feature (According to ESRI) has been fixed in version 10.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We worked around it in version 7 as follows:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. Created a button to "lock" the mapscale at the current value&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Sub Lockmapscale&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Application.Userproperties("MapScale") = Application.Map.Scale&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Mustlockscale = True&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;End Sub&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2. In the Arcpad.apx file call a sub each time a valid GPS pos is received&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;SYSTEMOBJECTS&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;lt;GPS onopen="call DoSetMapRotationOn" onclose="DoSetMapRotationOff" onposition="Call ResetZoom"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/SYSTEMOBJECTS&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;3.&amp;nbsp; Make sure the zoom level stays the same&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Sub ResetZoom&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; If Application.Map.Scale &amp;lt;&amp;gt; Application.Userproperties("MapScale")&amp;nbsp; and mustlockscale = true then&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Application.Map.Scale = Application.Userproperties("MapScale")&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;End sub&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is not the most elegant sollution, but it works.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Eddie&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Oct 2010 14:35:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/automatic-map-rotation-and-scale/m-p/505670#M3684</guid>
      <dc:creator>EddieViljoen</dc:creator>
      <dc:date>2010-10-26T14:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Map Rotation and Scale</title>
      <link>https://community.esri.com/t5/arcpad-questions/automatic-map-rotation-and-scale/m-p/505671#M3685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I can second that - when the map is rotated manually and then panned or rescaled, this&amp;nbsp; causes the map view to pan or rescale entirely erratically and not in&amp;nbsp; the desired way of the specific pan or rescale applied. Basically this&amp;nbsp; renders the rotation function entirely useless as it requires to&amp;nbsp; pan and zoom in again to the needed map section if this&amp;nbsp; happens.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Apperently this a known, 6-year old bug which still has not been adressed...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2012 00:57:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcpad-questions/automatic-map-rotation-and-scale/m-p/505671#M3685</guid>
      <dc:creator>MaxRingler</dc:creator>
      <dc:date>2012-10-01T00:57:37Z</dc:date>
    </item>
  </channel>
</rss>

