Is there a way to get better resolution maps from USGS?
Thanks,
|
ArcGIS Server treats each request as a unique, complete map. So, it will add labels to all features that you requested. What you're doing is equivalent to setting up 100 computers on a gymnasium wall, then standing back and looking at them all at once. Since this is a dynamic map, you can improve the looks somewhat by increasing the value of the DPI argument that you send to the export operation. However, the server may switch the renderer or the layer visibility based on what it calculates the visible scale to be at the DPI you request. To remove the repeated labels, you must omit the layers that are being labeled from the request. In your example this is the County Boundary layer, which is within the Boundaries group layer. By specifying an "exclude" parameter with the IDs of the two Boundaries groups, you can draw an image without the labels as follows: You could further improve the rendering quality by requesting the features as vectors (rather than images) and drawing them on the client side. You would have to do a lot more work on the client side to get this done, though! |
||||
|
|
&dpi=300– CaptDragon Mar 8 '12 at 21:13