[codenameone-discussions] Re: GoogleMaps on android.

2016-09-16 Thread Shai Almog
RFE = Request for Enhancement 
It's a bug report that asks for a new feature:
https://www.codenameone.com/blog/issue-submission-guideline.html

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to codenameone-discussions+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/73eb9d6a-e5d5-49c1-9b6e-17e9f188519f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[codenameone-discussions] Re: GoogleMaps on android.

2016-09-15 Thread Shai Almog
OK, looking at this again I see that this relates to the Android build 
process which currently depends on play services 8.3. 
You can file an RFE to update it to the latest.

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to codenameone-discussions+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/73f14177-f51a-422f-a6dd-9e75ad8d22f6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[codenameone-discussions] Re: GoogleMaps on android.

2016-09-15 Thread Rocotoco Rodriguez
Shai: right now i dont find the page where i read it, but if you check 
https://developers.google.com/maps/documentation/android-api/releases youll 
see that in the latest version , the api allows to set the maximum and the 
minimum zoom in the map.

i want to contribute with the project adding new functionalities, but im 
lost right now about how to improve that.

please, tell me why i cant use that procedure in the curret scenario.

thnks!

On Thursday, September 15, 2016 at 2:07:12 AM UTC-3, Shai Almog wrote:
>
> As far as I can tell we always use the latest: 
> https://github.com/codenameone/codenameone-google-maps/
>
> Where did you get the 8.3 number from?
>

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to codenameone-discussions+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/4ac46870-ab5c-4db6-b8bc-f2e7cbe7956a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[codenameone-discussions] Re: GoogleMaps on android.

2016-09-14 Thread Shai Almog
As far as I can tell we always use the latest: 
https://github.com/codenameone/codenameone-google-maps/

Where did you get the 8.3 number from?

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to codenameone-discussions+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/fc2a1963-47d2-4f3f-9c5f-27dbcd3f5965%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[codenameone-discussions] Re: GoogleMaps on android.

2016-09-14 Thread Rocotoco Rodriguez
 Shai: i Found in the web that function is available in 
com.google.android.gms:play-services-maps:9.4.0  
, but searching in the error log, i found you use 
com.google.android.gms/play-services-maps/8.3.0/

how i can upgrade the version?

can you help me?

On Wednesday, September 14, 2016 at 2:24:54 AM UTC-3, Rocotoco Rodriguez 
wrote:
>
> Shai: i was looking about how to set the maximum zoom in a map and i found 
> in 
> https://developers.google.com/android/reference/com/google/android/gms/maps/GoogleMap
>  
> were i found the   GoogleMap.setMaxZoomPreference function who looks like 
> what i need.
>
> the problem is when i try to compile in androd , so the compiler returns 
> the following error:
>
> Compiling with JDK Java compiler API.
> /tmp/build8361734456919142315xxx/MyApplication/src/main/java/com/codename1/googlemaps/InternalNativeMapsStub.java:45:
>  error: incompatible types: void cannot be converted to int
> return impl.setMaxZoom(param0);
>   ^
> /tmp/build8361734456919142315xxx/MyApplication/src/main/java/com/codename1/googlemaps/InternalNativeMapsImpl.java:492:
>  error: cannot find symbol
> GoogleMap.setMaxZoomPreference(parZoom);
>  ^
>   symbol:   method setMaxZoomPreference(int)
>   location: class GoogleMap
>
>
> any idea about what is happend? thanks
>
>
>
> If you are experiencing an issue please mention the full platform your 
> issue applies to:
> IDE: NetBeans/Eclipse/IDEA
> Desktop OS
> Simulator 
> Device
>

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to codenameone-discussions+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/b6fe6d42-f64d-47be-a04a-7b5e6b13947c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[codenameone-discussions] Re: GoogleMaps on android.

2016-09-14 Thread Rocotoco Rodriguez
Its possible that the google maps sdk is out of date on the server?

On Wednesday, September 14, 2016 at 2:24:54 AM UTC-3, Rocotoco Rodriguez 
wrote:
>
> Shai: i was looking about how to set the maximum zoom in a map and i found 
> in 
> https://developers.google.com/android/reference/com/google/android/gms/maps/GoogleMap
>  
> were i found the   GoogleMap.setMaxZoomPreference function who looks like 
> what i need.
>
> the problem is when i try to compile in androd , so the compiler returns 
> the following error:
>
> Compiling with JDK Java compiler API.
> /tmp/build8361734456919142315xxx/MyApplication/src/main/java/com/codename1/googlemaps/InternalNativeMapsStub.java:45:
>  error: incompatible types: void cannot be converted to int
> return impl.setMaxZoom(param0);
>   ^
> /tmp/build8361734456919142315xxx/MyApplication/src/main/java/com/codename1/googlemaps/InternalNativeMapsImpl.java:492:
>  error: cannot find symbol
> GoogleMap.setMaxZoomPreference(parZoom);
>  ^
>   symbol:   method setMaxZoomPreference(int)
>   location: class GoogleMap
>
>
> any idea about what is happend? thanks
>
>
>
> If you are experiencing an issue please mention the full platform your 
> issue applies to:
> IDE: NetBeans/Eclipse/IDEA
> Desktop OS
> Simulator 
> Device
>

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to codenameone-discussions+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/bb1fcf83-1955-491f-8daa-65fc121fd726%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.