ConvertGeodeticDatum

Display Google Map after modify Geodetic Datum

ConvertGeodeticDatumคืออะไร?

ConvertGeodeticDatum เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Takuya Ono และคุณลักษณะหลักของมันคือ "Display Google Map after modify Geodetic Datum"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ConvertGeodeticDatum

ดาวน์โหลดไฟล์ส่วนขยาย ConvertGeodeticDatum ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Press the "Google Map" button added behind the address to display the same location on Google Map.

I felt that the map displayed in the "vehicle position at detection" of "engine start notification mail" which is one of the functions by Toyota's car navigation T-Connect (G-BOOK) is not easy to use.

So add the button to open the currently open location on Google Map on the map of T - Connect.

Since the position of the GPS of the car navigation includes about 10m error.
But, you may not find the errors on the T-Connect map, because the map is small. The other hand Google Map can also display scales smaller. So, you may feel there are position errors on Google Map.

Since car navigation GPS seems to be using the old Japan geodetic system (Tokyo Datum), this extension use Proj4js to convert it to the world geodetic system (WGS84) which Google map maybe using. 

From now on, we plan to extend the range of correspondence not only to the map of T - Connect but also to other maps.

What's New!
0.9 Initial release                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ConvertGeodeticDatum ConvertGeodeticDatum
ID jfjbbfebleaamljdloglnmlgaccngkkj
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/t-connect%E5%9C%B0%E5%9B%B3%E3%82%92google-map%E3%81%A7%E3%82%82%E8%A1%A8/jfjbbfebleaamljdloglnmlgaccngkkj
คำอธิบาย Display Google Map after modify Geodetic Datum
ขนาดไฟล์ 85.42 KB
จำนวนการติดตั้ง 340
เวอร์ชันปัจจุบัน 1.0.2022.4290
อัปเดตครั้งล่าสุด 2022-05-01
วันที่เผยแพร่ 2019-07-31
ผู้พัฒนา Takuya Ono
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://docs.google.com/document/d/e/2PACX-1vRM2SXohzY6shEZFFXmguJAJqWf-7LUyrMJHIkA5-eNyj34oAcQfiaxvEbCH8i4Bc1QabBw3f3X9zmM/pub
ภาษาที่รองรับ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/g-book.com\/map\/*"
            ],
            "js": [
                "lib\/jquery.min.js",
                "lib\/proj4.js",
                "MessageUtil.js",
                "ConvertGeodeticDatum.js"
            ]
        }
    ],
    "icons": {
        "128": "img\/logo128.png",
        "48": "img\/logo48.png",
        "24": "img\/logo24.png",
        "16": "img\/icon.png"
    },
    "permissions": [],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'unsafe-eval' 'https:\/\/www.googletagmanager.com' 'https:\/\/www.google-analytics.com';"
    },
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "name": "__MSG_ConvertGeodeticDatum_name__",
    "description": "__MSG_ConvertGeodeticDatum_description__",
    "short_name": "__MSG_ConvertGeodeticDatum_short_name__",
    "author": "Takuya Ono",
    "default_locale": "ja",
    "version": "1.0.2022.4290"
}