-
Notifications
You must be signed in to change notification settings - Fork 410
New issue
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
Get point using Gmap #110
Comments
My geocode status always become unknown and ,result of get point always null. |
Use the version 1.8.0 |
@Vijayapriyacs I am also getting status of unknown and a result of null for the point. |
Hey,
1) Open the project/solution in Visual Studio, and open the console using
the Tools > NuGet Package Manager > Package Manager Console command
2) uninstall existing version you have by typing the following command
Uninstall-Package GMap.NET.Windows -Force
3) Install 1.8.0 by writing the following command
Install-Package GMap.NET.Windows -Version 1.8.0
Hope my answer helps you.
Here is my complete guide to use Gmap.Net
*GMap Complete Guide*:
https://www.youtube.com/playlist?list=PLlD7n_T-mUjVuqIhWVfaNhnpqCZmNcA9e
If you have any doubts watch my GMap Complete Guide
Thanks and Regards,
Balaji
…On Thu 20 Dec, 2018, 9:05 AM cdmassey22 ***@***.*** wrote:
@Vijayapriyacs <https://github.com/Vijayapriyacs> I am also getting
status of unknown and a result of null for the point.
Did you find a solution to this issue?
The current version appears to be 1.7.5
@SaiBalaji202 <https://github.com/SaiBalaji202> Where did you go to
download version 1.8.7 or 1.8.0 ?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#110 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AcQmEqKIZ56-5IM3ft8EuQtgLQOo8rmUks5u6wV-gaJpZM4W7CIu>
.
|
We should provide api key then only this error get resolved
…On Thu 20 Dec, 2018, 9:29 AM Balaji, ***@***.***> wrote:
Hey,
1) Open the project/solution in Visual Studio, and open the console using
the Tools > NuGet Package Manager > Package Manager Console command
2) uninstall existing version you have by typing the following command
Uninstall-Package GMap.NET.Windows -Force
3) Install 1.8.0 by writing the following command
Install-Package GMap.NET.Windows -Version 1.8.0
Hope my answer helps you.
Here is my complete guide to use Gmap.Net
*GMap Complete Guide*:
https://www.youtube.com/playlist?list=PLlD7n_T-mUjVuqIhWVfaNhnpqCZmNcA9e
If you have any doubts watch my GMap Complete Guide
Thanks and Regards,
Balaji
On Thu 20 Dec, 2018, 9:05 AM cdmassey22 ***@***.*** wrote:
> @Vijayapriyacs <https://github.com/Vijayapriyacs> I am also getting
> status of unknown and a result of null for the point.
> Did you find a solution to this issue?
> The current version appears to be 1.7.5
> @SaiBalaji202 <https://github.com/SaiBalaji202> Where did you go to
> download version 1.8.7 or 1.8.0 ?
>
> —
> You are receiving this because you were mentioned.
> Reply to this email directly, view it on GitHub
> <#110 (comment)
>,
> or mute the thread
> <
https://github.com/notifications/unsubscribe-auth/AcQmEqKIZ56-5IM3ft8EuQtgLQOo8rmUks5u6wV-gaJpZM4W7CIu
>
> .
>
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#110 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AXTW_GfIg1NZylt5PqpPuyNPODbOxPD-ks5u6wsEgaJpZM4W7CIu>
.
|
I did not realize that Windows Forms code was also in this judero01col/GMap.NET. |
Hi si
While I'm try to use get point of particular address
Geocode status becomes false
Will you please let me know how can I get point of particular address.
GeoCoderStatusCode status;
//Here I search the address and the city
PointLatLng? punt = GMapProviders.GoogleMap.GetPoint(punti[i].Address+ ", " + punti[i].City, out status);
//At this I point I check if I received the data
if (status == GeoCoderStatusCode.G_GEO_SUCCESS)
{
double la = punt.Value.Lat;
double lo = punt.Value.Lng;
marker = new GMarkerGoogle(new PointLatLng(la, lo), GMarkerGoogleType.green_dot);
punti[i].Latitudine = la;
punti[i].Longitudine = lo;
}
//If the
Thanks in advance.
The text was updated successfully, but these errors were encountered: