Which should I use: Get Copyright Caption or Get Map Attribution?

mari 40 Reputation points
2024-08-06T07:35:45.2766667+00:00

AzureMapのGet Map Tile APIを使いタイルデータを取得し、地図を表示するアプリを作成しています。

著作権および帰属表示のためにはGet Copyright CaptionGet Map Attributionはどちらを使えばよいのでしょうか?

使い分けの仕方がよくわかりませんでした。

Azure Maps
Azure Maps
An Azure service that provides geospatial APIs to add maps, spatial analytics, and mobility solutions to apps.
716 questions
0 comments No comments
{count} votes

Accepted answer
  1. rbrundritt 18,061 Reputation points Microsoft Employee
    2024-08-06T14:21:50.04+00:00

    I would recommend using the map attribution service as the copyrights change with zoom level and location: https://learn.microsoft.com/rest/api/maps/render/get-map-attribution?view=rest-maps-2024-04-01&tabs=HTTP This is the service that the Azure Maps web SDK uses. It does have HTML in the response that you may want to remove if you app isn't a web app. Here is a simple way to do that in c#:

    copyrightString = Regex.Replace(copyrightString, "<.*?>", string.Empty)
    

    I'm not sure what the plan is for the Copyright Caption service, it is really outdated and doesn't include all the copyrights. I suspect that one will be shut down in the not too distant future.

    1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. rbrundritt 18,061 Reputation points Microsoft Employee
    2024-08-06T14:07:46+00:00

    Translated from Japanese to English:

    Content:

    I am creating an app that retrieves tile data using AzureMap's Get Map Tile API and displays a map.

    For copyright and attribution, which should I use, Get Copyright Caption or Get Map Attribution?

    I didn't really know how to use them properly.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.