I have my app and have added a bunch of layers from ESRI
Url="http://server.arcgisonline.com/ArcGIS/rest/services/ESRI_ShadedRelief_World_2D/MapServer"/>
Url="http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Specialty/ESRI_StateCityHighway_USA/MapServer"/>
Url="http://services.arcgisonline.com/ArcGIS/rest/services/ESRI_StreetMap_World_2D/MapServer" />
Url="http://services.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer"/>
Url="http://servicer.arcgisonline.com/ArcGIS/rest/services/Demographics/ESRI_MedianIncome_US_2D/MapServer"/>
They draw great...adn then I added a bunch of my own layers on top of those. These are in a DIFFERENT projection that much I know. But they still display fine.I am no running into issues with an example from ESRI Silverlight API...
' Zoom to selected feature (define expand percentage)
Dim selectedFeatureExtent As ESRI.ArcGIS.Client.Geometry.Envelope = selectedFeature.Geometry.Extent
Dim expandPercentage As Double = 230
Dim widthExpand As Double = selectedFeatureExtent.Width * (expandPercentage / 50)
Dim heightExpand As Double = selectedFeatureExtent.He ight * (expandPercentage / 50)
Dim displayExtent As New ESRI.ArcGIS.Client.Geometry.Envelope(selectedFeatureExtent.XMin - (widthExpand / 2), selectedFeatureExtent.YMin - (heightExpand / 2), selectedFeatureExtent.XMax + (widthExpand / 2), selectedFeatureExtent.YMax + (heightExpand / 2))
MyMap.ZoomTo(displayExtent)
This code is sort of working....It highlights the selected feature and does a zoom.BUT i have no idea where the zoom is to? Its moving to an entrire differnet location than the selected feature should be. It is selecting a Parcel...but moves to another location where the parcels are not....Could this be an issues with the two different coordinate systems...(between the ESRI data and mine).Any thoughts? Is there a way I can specify the projection info on the Zoom ?????Thanks