geolonia / docs.geolonia.com

https://docs.geolonia.com/
0 stars 3 forks source link

google maps との書式比較表がほしい #61

Open champierre opened 1 year ago

champierre commented 1 year ago

google maps との書式比較表がほしい。 開発者が気になるポイント。ほとんど変わらないとわかれば、スイッチするコストが低いので。

google だとこう

  const map = new google.maps.Map(
    document.getElementById("map") as HTMLElement,
    {
      zoom: 4,
      center: myLatLng,
    }
  );

geolonia だとこう

  const map = new geolonia.Map(
    document.getElementById("map") as HTMLElement,
    {
      zoom: 4,
      center: myLatLng,
    }
  );