<?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: How to show both tiled map services on the same map? in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-show-both-tiled-map-services-on-the-same/m-p/33273#M799</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I usually toggle my basemaps using a button bar.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Jul 2012 11:50:59 GMT</pubDate>
    <dc:creator>AustinDavis</dc:creator>
    <dc:date>2012-07-20T11:50:59Z</dc:date>
    <item>
      <title>How to show both tiled map services on the same map?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-show-both-tiled-map-services-on-the-same/m-p/33272#M798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have several tiled map services (e.g., population, land use) that I need to let users to select so that they can show up on the map.&amp;nbsp; But I also need to show the base map like street map as background, which is also a tiled map service.&amp;nbsp; Since they are all tiled and I guess I have to use &amp;lt;esri:ArcGISTileMapServiceLayer&amp;gt;, my question is that how can I show both base map(street map) and my own map(population) on the same map? Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2012 15:09:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-show-both-tiled-map-services-on-the-same/m-p/33272#M798</guid>
      <dc:creator>LeiZhou</dc:creator>
      <dc:date>2012-07-19T15:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to show both tiled map services on the same map?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-show-both-tiled-map-services-on-the-same/m-p/33273#M799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I usually toggle my basemaps using a button bar.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2012 11:50:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-show-both-tiled-map-services-on-the-same/m-p/33273#M799</guid>
      <dc:creator>AustinDavis</dc:creator>
      <dc:date>2012-07-20T11:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to show both tiled map services on the same map?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-show-both-tiled-map-services-on-the-same/m-p/33274#M800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;As long as the two services are cached at the same levels they should draw on top of one another.&amp;nbsp; I have tiled map services draw on top of each other.&amp;nbsp; I use the Flex Viewer (version 2.5) for most of my websites.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For instance I have a basemap and flood zones that show together.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you are using the viewer, just place your tiled service in the operational layers.&amp;nbsp; For example:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;lt;basemaps&amp;gt; &amp;lt;layer label="My Basemap"&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type="tiled"&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; visible="true" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; url="http://server/ArcGIS/rest/services/BASEMAP/MapServer"/&amp;gt; &amp;lt;/basemaps&amp;gt; &amp;lt;operationallayers&amp;gt; &amp;lt;layer label="Flood Zones"&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type="tiled"&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; visible="true" &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; url="http://server/ArcGIS/rest/services/FloodZones/MapServer"/&amp;gt; &amp;lt;/operationallayers&amp;gt;&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'd attach the MapMananager.mxml from the viewer, but it is quite extensive.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In theory, as long as you place the services in the proper drawing order then you both should draw on top of one another.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Another thing is make sure your cache tiles are in a PNG format because JPEG's do not support transparency.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chris B.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2012 12:13:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-show-both-tiled-map-services-on-the-same/m-p/33274#M800</guid>
      <dc:creator>ChristopherBlinn1</dc:creator>
      <dc:date>2012-07-20T12:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to show both tiled map services on the same map?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-show-both-tiled-map-services-on-the-same/m-p/33275#M801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I usually toggle my basemaps using a button bar.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks a lot!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2012 20:27:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/how-to-show-both-tiled-map-services-on-the-same/m-p/33275#M801</guid>
      <dc:creator>LeiZhou</dc:creator>
      <dc:date>2012-07-23T20:27:54Z</dc:date>
    </item>
  </channel>
</rss>

