We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I used this repo with Telegram Bot. To send Inline Keyboard Buttons with multiple Map Apps' WebPage Version. Just like this:
$button1 = new InlineKeyboardButton([ 'text' => 'Show In Google Maps', 'url' => "https://www.google.com/maps?q={$airport['lat']},{$airport['lon']}", ]); $button2 = new InlineKeyboardButton([ 'text' => 'Show In Apple Maps', 'url' => "https://maps.apple.com/?ll={$airport['lat']},{$airport['lon']}&q={$airport['name']}", ]); $button3 = new InlineKeyboardButton([ 'text' => ($airport['tz'] == 'Asia/Shanghai' ? '' : '[Unsupported] ') . 'Show In AMap', 'url' => "https://ditu.amap.com/regeo?lat={$airport['lat']}&lng={$airport['lon']}&name={$airport['name']}", ]);
AS title said, China Always using GCJ-02 GPS location type.
So this repos' lat and lon always losing accuracy in different maps.
For example:
Different map gave different point.
I don't know if it is Google's issue that they doesn't support GCJ-02 GPS locations.
I am here to confirm if it is Google's issue or this database's.
And I want to know how to resolve this.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I used this repo with Telegram Bot.
To send Inline Keyboard Buttons with multiple Map Apps' WebPage Version.
Just like this:
AS title said, China Always using GCJ-02 GPS location type.
So this repos' lat and lon always losing accuracy in different maps.
For example:
Different map gave different point.
I don't know if it is Google's issue that they doesn't support GCJ-02 GPS locations.
I am here to confirm if it is Google's issue or this database's.
And I want to know how to resolve this.
The text was updated successfully, but these errors were encountered: