"Guideline 4.0 - Design
We continue to find that your app's location feature is not integrated with the built-in mapping functionality, which limits users to a third-party maps app.
Next Steps
To resolve this issue, please revise your app to give users the option to launch the native Apple Maps app."
Good luck with that. Apple wouldn't approve my app until I removed the work "android" from the product description.
I'm sure this kind of BS will eventually be ruled illegal, but meantime apple rules.
--
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-discu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/codenameone-discussions/8f0886c5-e896-4184-8440-d776f6902ae4%40googlegroups.com.



The problem isn't google maps. You can use that just fine.The problem is the navigation code you have in your app which launches only Google Maps or Waze. It should support Apple Maps too. How did you implement navigation?
--
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-discu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/codenameone-discussions/afacc56c-b490-4e3c-b022-9b6df3561bdd%40googlegroups.com.
MapContainer map = new MapContainer();
Container root = LayeredLayout.encloseIn(BorderLayout.center(map));
addMarkers(res, map, "price_d");
root.setScrollable(false);
gui_Con_Map.add(BorderLayout.CENTER, root);
map.zoom(initCoord, 12);
map.setShowMyLocation(true);
addFabListener(res, map);
The problem isn't google maps. You can use that just fine.The problem is the navigation code you have in your app which launches only Google Maps or Waze. It should support Apple Maps too. How did you implement navigation?
--