Integrating MATLAB Maps Broswer in my App Designer Project

13 ビュー (過去 30 日間)
Vinayak
Vinayak 2020 年 2 月 4 日
コメント済み: Cris LaPierre 2020 年 5 月 21 日
Hello All,
I am trying to develop an application using MATLAB App Designer for which I need to add MATLAB MAPS as part of Tool.
The use case is say I have list of residential address which I want to display on MAPS.
I know we can use wmmarker and create a GeoPoint and then display it on World Maps which always pops out as a seperate tab.
Is there a way I can add 2-D Axes in my App designer and ask my World Maps to be displayed on these axes.
Regards,
Vinayak M

採用された回答

Sean de Wolski
Sean de Wolski 2020 年 2 月 4 日
Webmaps aren't supported in app designer. Look at using geoplot with the correct base map. Think this will get you what you want.
  1 件のコメント
Cris LaPierre
Cris LaPierre 2020 年 5 月 21 日
See this documentation page for a list of supported plot types and examples of how to create them in an App. Additional properties for geographic axes can be found here.
As a simple example, here is how you could add and position a geoscatter plot.
gx = geoaxes(app.UIFigure);
gx.Position = [0.1300 0.6100 0.450 0.250];
geoscatter(gx,lat_data,lon_data)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGeographic Plots についてさらに検索

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by