Can the Google Maps Android apps be extended? If so, how? -
i'd add functionality google maps android app without creating entire new map of own. can extend via extension or plugin?
as merka wrote can't extend googlemap , googlemapoptions classes, can create custom class-wrapper, that:
class myowngooglemap implements onmapreadycallback { private googlemap mgooglemap; @override public void onmapready(googlemap googlemap) { mgooglemap = googlemap; ... } public void myownmethod() { ... } } you can google more details wrappers in java or start this answer of arne
Comments
Post a Comment