Hi guyz...I am new to arcgis Runtime...I want to make basic tools like zoom in, zoom out button in arcgis runtime .net ...Could you please help me out...
Solved! Go to Solution.
Just for the ZoomIn and ZoomOut functionality, you can create 2 buttons and call MapView.ZoomAsync(double) to invoke to zoom. If you give a value larger than 1 ie 1.5 then it zoom in and if the value is less than 1 ie 0.5 then it zoom out.
ie. await MapView.ZoomAsync(1.5);
Hey,
there is a very good documentation and sample code.
This will help you with your first steps.
Hey Oliver ,thanx for reply..Actually i already did it and i searched alot but i am unable to get helpul information ...if you have any helpful suggestion please let me know..
Thanks in advance
Anil
Hi,
Could you be more exact what kind of information you are looking for? Samples, Guide documentation and API reference should give fairly good idea how to work with the SDK.
If you have more detailed questions how to do something specific functionality, please let me know.
Also have a look on our toolkit controls on GitHub.
Here are some references:
https://developers.arcgis.com/net/desktop/guide/guide-home.htm
https://developers.arcgis.com/net/desktop/api-reference/
Just for the ZoomIn and ZoomOut functionality, you can create 2 buttons and call MapView.ZoomAsync(double) to invoke to zoom. If you give a value larger than 1 ie 1.5 then it zoom in and if the value is less than 1 ie 0.5 then it zoom out.
ie. await MapView.ZoomAsync(1.5);
Thanks Antti Kajanus for help..
That what i was looking for..
Can you please help me with the code ??
I would love to help, but what's the problem you're having with the code?
Thankyou sir, i got how to work with zoomin and zoomout