ThinkGeo.com    |     Documentation    |     Premium Support

Zoom Levels

I'm testing the new version and i have a problem. In the Map Suite Desktop Edition 2.0 we can do a great zoom in. But now, we found a point where we can't do zoom in.


In my aplication i need a high definition but now i can't do the zoom that i want...


Any solutions to this problem? Thanks!!!!



Carlos, 
  
 I’m a bit confused about what you said.  Now in 3.0, we still have APIs like ZoomIn, ZoomOut, ZoomToScale, ZoomIntoCenter, and also you can use mouse scroller to zoom in/out the map, or track zoom in by hitting the shift button.  So could you let me know more about what you want to accomplish?  
  
 Ben

Hi ben,


 
Sorry, maybe my explanation wasn´t enough good. What i refered to is the way you zoom in the last level, zoomlevel01. In the previous version you could apply many "zoom in" in that layer, even if it is not very graphically atractive. but the fact is that i need to work with High Resolution applications, and i would need that extra zooms that in the recently released version cant find (i always refer to zoom in).
 
I hope you understand me, otherwise don't doubt to contact me and i would try to explain it again in a different way if i can, both we know that an image sometimes is more important than thousands of words.
 
Thank you very much.
 
Carlos.

Carlos, 
  
 I see your problem. Please add the following code to your application. 
  
 winformsMap1.MinimumScale = 1; 
  
 This property sets the min scale of the map, which means how far you can zoom in. We set it to 1, that means the map can be 1:1 to the real world at largest. We used to set the default value to 500, I think you can find the setting "winformsMap1.MinimumScale = 500" in the auto generated code in InitializeComponent(). 
  
 Ben.

That’s rigth!!! Thank you very much Ben!!!

it’s my pleasure, Carlos!