Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Actually, I can open a native Activity from titanium framework but, when I switch it to a MapActivity with a MapView, I get a hundred errors on references to Google Maps classes as follows:

[ERROR] C:\Users\Administrador\My Documents\Titanium Studio Workspace\MyProject\build\android\src\com\maps\BubblesMap\view\BubblesOverlay.java:6: package com.google.android.maps does not exist
[ERROR] import com.google.android.maps.MapView;
[ERROR]                               ^
[ERROR] C:\Users\Administrador\My Documents\Titanium Studio Workspace\MyProject\build\android\src\com\maps\BubblesMap\view\BubblesOverlay.java:7: package com.google.android.maps does not exist
[ERROR] import com.google.android.maps.Overlay;
[ERROR]  

                         ^
etc...

I have set the Android API to Google APIs 2.2 in the project properties window and <tool-api-level>8</tool-api-level> in tiapp.xml and <uses-library android:name="com.google.android.maps" /> in the AndroidManifest.xml on the native part.

Any ideas? Thanks

share|improve this question
Did you find a solution? – AndiDog May 15 at 11:14
No, I moved on and never used titanium again – ferdy182 May 16 at 13:07
Great decision! Unfortunately I have to work with it, for now :P Thanks anyway. – AndiDog May 16 at 21:05

1 Answer

Might be due to the fact that appcelertor appa only allow for one map view in the app Ns requires that you reuse that on instance

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.