Select to view content in your preferred language

Bing Maps Examples Please

627
2
08-26-2010 10:04 PM
IanHamilton
Deactivated User
I have managed to get Bing working for only ons style type - road

Doas any one have all three types working in the same map?

I have copy/pasted the lines only changing the style parameter. They all show the roads style whatever.

Thanks,

Ian
Tags (2)
0 Kudos
2 Replies
RobertScheitlin__GISP
MVP Emeritus
Ian,

   Here is what I use for FlexViewer 2.0.

<basemaps>
            <mapservice label="Streets" type="Bing" key="xxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxx" visible="true"  alpha="1" style="road" culture="en-US"/>
            <mapservice label="Aerial" type="Bing" key="Axxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxx" visible="false"  alpha="1" style="aerial" culture="en-US"/>
            <mapservice label="Mixed" type="Bing" key="xxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxx" visible="false"  alpha="1" style="aerialwithlabels" culture="en-US"/>
        </basemaps>


and for non viewer app

<esri:VETiledLayer id="Streets" name="Streets" key="xxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxx" visible="true" alpha="1" culture="en-US" mapStyle="road"/>
<esri:VETiledLayer id="Aerial" name="Aerial" key="xxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxx" visible="false" alpha="1" culture="en-US" mapStyle="aerial"/>
<esri:VETiledLayer id="Mixed" name="Mixed" key="xxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxx" visible="false" alpha="1" culture="en-US" mapStyle="aerialWithLabels"/>
0 Kudos
IanHamilton
Deactivated User
Thanks Robert,

Only difference I had was the culture tag
all works now
0 Kudos