How to remove the textbox on geoplot()?
17 ビュー (過去 30 日間)
古いコメントを表示
Hello,
I have attached a geoplot() figure and I am trying to remove the textbox in the bottom right corner ("Esri OpenStreetMap contributors, Here,Gramin...."). I kindly request your support in this regards.
Thank you
0 件のコメント
回答 (2 件)
Dyuman Joshi
2023 年 9 月 28 日
編集済み: Dyuman Joshi
2023 年 9 月 28 日
You can not remove that particular textbox. That textbox is embedded in the geobasemaps that are provided by external sources, particularly Esri, which seems to be their watermark (for the lack of a better word).
See here - Input Arguements to geobasemap
You could use other geobasemaps or add a custom basemap, but depending upon the source, there might be a watermark as well.
Pratyush
2023 年 9 月 28 日
Hi Akash,
I understand you want to delete the footer note at the bottom left of the map image. It is not a textbox, it is the name of organizations related to mapping, geospatial data, and environmental information. It is embedded in the map data itself and can't be deleted. However, if you wish to delete a text from a figure, you can use the following command:
h = gcf;
delete(findobj(h, 'Type', 'text'));
2 件のコメント
Robert Daly
2024 年 7 月 25 日
If we can't remove the watermark, is it possible to move it to another location?
参考
カテゴリ
Help Center および File Exchange で Geographic Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!