I am trying to make a GUI which can display map data on the Title of the App.

2 ビュー (過去 30 日間)
Kunal Khosla
Kunal Khosla 2021 年 3 月 20 日
コメント済み: Kunal Khosla 2021 年 4 月 1 日
I am trying to make a GUI which can display map data on the Title of the App.
However, i am unable to access basic geoaxes functionalities like pan, zoomin and zoomout at the same time. Can anybody help me here. I created a callback function as shown below:
funcion mousemove(app,~,~,handle)
C=handle.CurrentPoint
title('C(1,1),',',C(1,2));
end
Once I hover the mouse over the map, i am not able to pan,zoom in/out using the mouse scollbar.
Thanks

回答 (1 件)

Reshma Nerella
Reshma Nerella 2021 年 3 月 31 日
Hi Kunal,
The Pan and Zoom interactivities for Geographic axes can be set using the Interactions property.
For example,
gx = geoaxes;
gx.Interactions = [panInteraction zoomInteraction];
This peice of code enables only the pan and zoom interactions.
For more information, refer to the documentation page of Geographic axes properties.
Hope this helps!

カテゴリ

Help Center および File ExchangeDevelop Apps Using App Designer についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by