Clear Filters
Clear Filters

Plotting gps coordinates in Appdesigner

57 views (last 30 days)
Hello everyone,
I have to plot a map in gps coordinates inside a UIAxes in Appdesigner, but using "geoplot" function the app plots the map in an other image outside the App. I tried give "app.UIAxes3" (which is the graph where I want to plot gps coordinates) as first argument of the function, but Matlab gives error saying that I have to use latitudinal/longitudinal coordinates.
Here is the code, and an image showing the map outside the app, instead i want the map in the UIAxes marked in red
%Function to plot TrackMap
function results = geoplotter(app)
app.track=geoplot([app.lat],[app.lon])
end
Maybe is there another way to write geoplot function in appdesigner or a different functions to read and plot map in gps coordinates?
Many Thanks

Accepted Answer

Harsha Priya Daggubati
Harsha Priya Daggubati on 8 Apr 2020
Hi,
Starting in R2018b, you can create additional plots in App Designer. Most of these plots require a different type of parent object and additional lines of code in your app. All of them use normalized position units by default.
For your case,
Create the geographic axes by calling the geoaxes function. Specify the parent container as the first input argument (for example, app.UIFigure). Then, call the plotting function with the axes as the first input argument. For example:
latSeattle = 47 + 37/60;
lonSeattle = -(122 + 20/60);
gx = geoaxes(app.UIFigure);
geoplot(gx,latSeattle,lonSeattle)
This might help you!
  6 Comments
Juan Guamán
Juan Guamán on 15 Apr 2020
it doesn't work on uiaxes please help me
Neha Sardesai
Neha Sardesai on 22 May 2020
You can use a panel or tab instead of UIAxes. This link should be helpful.

Sign in to comment.

More Answers (0)

Categories

Find more on Geographic Plots in Help Center and File Exchange

Products


Release

R2019b

Community Treasure Hunt

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

Start Hunting!