如何将地理图相互叠加?

时间:2019-08-01 02:13:52

标签: matlab

我正在绘制地理气泡图(通过geobubble()),并且要在其上方覆盖地理线图(通过geoplot())。

我尝试过hold on,但它抛出了错误Error using hold (line 42) Using hold with geobubble is not supported.

此脚本生成一个地理气泡图。

longt = rand(10, 1);
lat = rand(10, 1);
val = 10*rand(10, 1);
gb = geobubble(longt, lat, val);

我想在其上面叠加一个折线图

A = [0.1, 0.9];
B = [0.2, 0.8];
geoplot([A(1) B(1)],[A(2) B(2)],'g-*')

0 个答案:

没有答案