Android :: Show Custom My Google Maps On Device

Jul 22, 2010

I created a custom map in Google Maps "My Maps". Now i want to show that map on an android device, but not just opening it as a web page but showing it using MapView or smth similar. I want to be able to center on a place I have marked on the map etc. My custom map is a map containing the location of all gas stations in a city.

Android :: Show custom My Google maps on device


Android :: Download Google Maps To Device

Jun 1, 2010

Often while using Google Maps, it takes a while to load the maps. I was wondering if it was possible to download these maps to my SD card for faster loading.

View 6 Replies View Related

Android :: Hosting Custom KML For Using In Google Maps Mobile?

Jul 14, 2010

I am new to Android and so I may be missing some very basic things here. I am trying to host custom KML files on a server behind my firewall and display those KML files on the Android emulator. I started by writing a simple app that uses an Intent to display the overlay and pointing the app at geo:0,0?q=
http://code.google.com/apis/kml/documentation/KML_Samples.kml. This works in the emulator.

Next I downloaded that KML file and posted it on my web server (Apache 2.2 on Fedora). I added an AddType directive for the .kml extension and restarted HTTPD. When I point my simple app's Intent to my internally hosted KML file I get the error "The community map could not be displayed because it contains errors." I added some code to try and download the KML file independently of the KML so I could check the status line and the like:

final HttpClient client = new DefaultHttpClient();
final HttpGet get = new HttpGet("http://mycompany.com/data/KML_Samples.kml");
try { final HttpResponse resp = client.execute(get);
android.util.Log.e("MapOverlays", resp.toString());
} catch (Throwable t) {
android.util.Log.e("MapOverlays", "Exception", t);
}

With a breakpoint on the first Log message line I can inspect the results:
statusline = "HTTP/1.1 200 OK"
Content-Type: application/vnd.google-earth.kml+xml

Here's the Intent I'm using:
final Intent intent = new Intent(
android.content.Intent.ACTION_VIEW,
Uri.parse("geo:0,0?q=http://mycompany.com/data/KML_Samples.kml"));
startActivity(intent);

So the two main questions are
What do I need to do to get KML loaded from a private server?
What tools are available (if any) to determine what is wrong with what I've done (something more informative than "The community map...")?

View 1 Replies View Related

Android :: Fully Download Google Maps To Device?

Aug 24, 2010

I own HTC Desire which has a built-in GPS. It's a really great option, but what really annoys me is this: when I use GPS, my data connection must also be enabled in order to refresh Google Maps. And since data packets in Croatia are still pretty expensive, this is not a option for me. Anyway, the question is: is there a way to fully download Maps to your SD Card without having data connection enabled, but GPS only?
So, just like with standard GPS devices.

View 7 Replies View Related

Motorola Droid :: Google Maps Show Old Position And Then Corrects Itself

Jan 23, 2010

Since I've had the phone now for a little over a month, about half the time that I start up Maps, it shows "My Position" as being at a house I lived at about a year ago, which is about an hour drive from where I live now. Back then, I was not with Verizon, but with ATT.

After a minute or so on Maps, it brings up my correct position. That changed about 4 days ago when I received a signal extender that was ordered from Verizon. Now, Maps starts up showing that I'm near a golf course in Canyon Lake, California. About 3 minutes later, it corrects itself.

View 19 Replies View Related

General :: Any Mods For Google Maps That Will Show Red Light Cameras

Jul 18, 2012

I was wondering if there was any mods for Google maps that will show red light cameras

View 1 Replies View Related

Android :: Threading - Custom Google Maps Tile Overlay

Nov 4, 2010

I've been stuck for ages now trying to implement threading or background image loading for a custom tile overlay class I've been working on. I'm pretty useless when it comes to Java so threading isn't something I've had any experience with. Basically I have extended an ItemizedOverlay and in the draw() method calculate the tiles I need to display over the standard google tiles then fetch those images with a URLConnection and using BitmapFactory decode them and draw them to the canvas at the correct position on the screen so that the images are on top of the google tiles with about 50% opacity (the custom tiles are cellphone network coverage png's which are used for our web app). I initially got this all working with the tiles loading in the correct places but hit issues with memory and "freezing" while panning so implemented some basic caching and memory management to only store the tiles that are displayed on the map in memory and when downloading a tile store it to SD card.

Then I figured the freezing while panning is due to the blocking nature of downloading the images so, have been trying to implement threading. I created a class that extends AsyncTask to download the images in the background and store them to SD, in the onPostExecute method I then try to draw all the tiles. But onPostExecute never seems to fire, now I know that the AsyncTask has to be called in the main ui thread so tried to debug the execution with Thread.currentThread().getId() calls through out the code. The thread Ids through out is 1 and then 10 for the doInBackground method for the AsyncTask. Now I'm not sure if 1 is the main UI thread or not. In the extended MapActivity class I have, the onCreate method's Thread.currentThread().getId() returns 1 but I'm not sure if the MapActivity class is executed in the main ui thread? Here Romain Guy mentions that the onPostExecute method should have @Override but when I do that eclipse flags it as an error

"The method onPostExecute(Boolean...) of type TileCache.ImageLoadTask must override or implement a supertype method"
So I guess something is wrong there but the only fix eclipse offers is to remove the @Override
So I guess with out post all my source code, the question's I have are:
Is the MapActivity onCreate method called in the main ui thread?
What does the @Override error mean? or why does it show that error
Does anyone have an example of a custom tile overlay implementation with background image loading and tile caching?

View 1 Replies View Related

Sprint HTC Hero :: No Service - Google Maps Show Our Location Using Cell Towers?

Mar 24, 2010

A few of us at work are wondering if we can use the google map or anyother type of locating device on our phones without phone service. Does the google maps show our location using the cell towers?

View 15 Replies View Related

HTC Droid Eris :: Possible To Port Google Maps Navigation On Device?

Nov 29, 2009

I've been doing a lot of research lately, on this forum as well as others and I read somewhere that someone was able to port google maps navigation to there eris. I can't remember if it was this site or somewhere else. Can anyone confirm this? I also read that the people over at xda-developers were able to get it working on the G1 which I believe is running either android 1.5 or 1.6.

Here is the link:
Google Maps Navigation Ported to T-Mobile G1 | Android Central.
It would be great if we could get this working on our Eris, I really don't care for any of the other 2.0 features besides this.

View 4 Replies View Related

Motorola Droid :: Custom Could Be Causing Google Maps Invalid Signature

Apr 23, 2010

I currently running Smoked Glass V6.0.1. I tried updated my google maps to 4.1.1 and I get a invalid signature. According to google mobile help forums I am receiving this error because my build number doesn't match specific build numbers their application is designed to work with.

Has anyone else experience this problem?

View 8 Replies View Related

Android :: How To Add Google Maps Library In Android 1.5 Version Device?

Jun 1, 2009

I extracted com.google.android.map.jar and com.google.android.map.xml and Map.apk files from the another development device which has google maps in it. I started with following procedure..

1. adb -d shell
2. # mount -o rw -t yaffs2 /dev/block/mtdblock3 /system mount -o rw -t yaffs2 /dev/block/mtdblock3 /system mount: Device or resource busy. I can't copy the above files to the /system/framework/ , /system/etc/ permissions/ , and /system/app to these directories.
C:>adb -d push C:GoogleMAPSMaps.apk /system/framework/ failed to copy 'C:GoogleMAPSMaps.apk' to '/system/framework// Maps.apk': Read-only file system

Is there any way to change the system image to Read write mode?

View 12 Replies View Related

Android :: Google Maps Custom Route With Turn By Turn Directions?

Sep 18, 2010

Frustrating - but apparently the capability is I can customize a route online with Google Maps, save it to my maps and send it to the phone but it sends the static map.Ridiculously, all this power and I can't take those directions from the PC and turn them into turn by turn directions on the phone.

View 3 Replies View Related

Android :: Google Maps - Settings In Emulator For Displaying Maps

Sep 25, 2010

I use the google code from devloper.android.com I use that application but in the emulator it shows only the crossed lines not the map so is there any settings in emulator for displaying maps

CODE:.....

Android mainfest

CODE:..................

View 4 Replies View Related

Android :: Maps Don't Show In App / How To Fix?

Jul 24, 2010

I'm just trying to run MapsDemo who is in 'samples' of the SDK, but consider this: http:/ i.imagehost.org/0829/mapss_don_t_show.png the Google maps is working perfectly http://j.imagehost.org/0640/google_maps.png ).

View 5 Replies View Related

Android :: Maps Only Show Grid / Why Is So?

May 5, 2010

I've doubled checked my API key is right and that is right I doubled checked that it was correct. Here is my source and XML could anyone check to see what is wrong. Also I make sure I have Internet. code...

View 1 Replies View Related

Android :: Possible To Show My Maps In MapView?

Aug 31, 2010

The Google map is too older for me, so I create my map in Google map and add some lines and marks. Is there a way to show my maps in MapView?

View 2 Replies View Related

General :: Google Maps 6.9 - Where Are Offline Maps Stored

Jul 12, 2012

what is the path to the offline map files saved by Google Maps 6.9?

View 9 Replies View Related

Android :: Adding Items To Maps Overlay Does Not Immediately Show On Map

Aug 28, 2010

I can't figure out how to tell my Map to redraw its overlays once I've updated them. Currently the user has to touch the screen before the map is redrawn.

View 2 Replies View Related

Android :: Google Latitude Application For Access Through Google Maps?

Mar 5, 2009

Is Google Latitude available in the UK or not, because it doesn't seem to be working for me? I have received the RC9 update for G1 and have Google Maps 3.0. Is there an a Google Latitude application that I should have or do I access everything through Google Maps? When I go the www.google.com/latitude on my G1, it offers me the option of "launching" Latitude but it just takes me to Google Maps. From there, I cannot see the locations of my Google "friends" (who have agreed to show location), neither does my own location show up on the Latitude homepage on the web (I have settings turned to "detect my location automatically").

View 13 Replies View Related

Android :: Map Does Not Show Up On Device

Dec 11, 2009

I am able to see Map in emulator but once I load app on device map does not show up.

Emulator have target as google api 1.6 and device have android 1.6 loaded.

Is this diffrence causing issue?

View 3 Replies View Related

Android :: Installing Maps Application Into Device

Dec 23, 2009

I have created a maps app and i want it to be installed on an android eclair device.. In the emulator if i choose the target as Google APIs its working fine but if i target it to donut or eclair its showing MISSING SHARED LIBRARY - com.google.maps. Initially it was not installing on to the device itself, showing INSTALL FAILED MISSING SHARED LIBRARY but i overcame with it by removing the "uses-library" line in the manifest file.

View 4 Replies View Related

Android :: Failed To Install App On Device With Maps Api

Nov 14, 2010

I get this error when i try to install my app from eclipse on my htc magic.

Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY
Please check logcat output for more details.
Launch canceled!

Logcat says: at.tomtasche.altitude requires unavailable shared library com.google.android.maps; failing! I developed an app with google maps before and there it works fine. And yes i have the uses-library android:name="com.google.android.maps" in the application tag of my manifest. It also works in the emulator, just my device dont install it.

View 1 Replies View Related

HTC Droid Eris : Can't Connect To Market / Maps Don't Show Up

Jan 7, 2010

When I try to connect to the Market, it says "A network error has occured." In the notifications bar it has the 3G icon, and I'm able to use the browser without any troubles. Also, in the Google Maps app that comes with the phone, I don't see any map. I just see a grid with a blue circle with "Your Location" in the center. I'm was at the Verizon store yesterday because whenever I tried to call someone it said that my phone wasn't authenticated, and when I mentioned these two particular problems, he said that once my phone was authenticated everything should work.

View 9 Replies View Related

HTC Desire : Maps For Memory And Use GPS To Show Location Just Like TomTom?

Apr 30, 2010

I would like to use My Desire with offline maps and GPs like a satnav eg TomTom. As I understand it Google maps requires the data connection up to load relevant map. This can be expensive when roaming in Europe. So is it possible to obtain maps for memory and use the GPS to show location just like a TomTom.

View 1 Replies View Related

Android :: Create An Custom Droid Maps Marker?

Sep 24, 2010

I want to create a mapview marker with 4 elements:
- picture (of user)
- background
- text (username)
- Arrow to show an direction

OverlayItem.setMarker() accept only a drawable.

How can I create an drawable with 4 Items? Or can i add an View as marker to overlayItem?

any ideas?

View 1 Replies View Related

Android :: How To Get Application Shortcut To Show Up In Device

Apr 26, 2010

I am using Activity-alias in AndroidManifest.xml to specify another entry point to my application using shortcut. I am seeing the shortcut in the shortcut list. How can I get my 2nd icon (shortcut) to show in the Home?

View 1 Replies View Related

Android :: ADB Device Name Show Invalid Characters

Nov 22, 2010

I am using a Chinese version of android phone, when I type the $./adb devices

It gives me the following: List of devices attached ?? device

My DEV computer is Ubuntu 10.10, locale is en_US.utf-8.

Is there a way that I can rename my device to a name of only simple letters.

View 3 Replies View Related

Motorola Droid :: Unable To Find Google Voice Or Google Maps In Market

Oct 19, 2010

I'm running Cyanogenmod 6. I just noticed that I can't find Google voice or Google maps in the market. I do have the apps installed, but can't see them int he market to get updates. I tried out LFY1.7 and Ultimate Droid 1.0.0, and see the same issue.

View 5 Replies View Related

General :: Google Apps Like GMAIL / GOOGLE+ / PLAY / Maps Not Working In Airtel 3G

Apr 16, 2014

I am using Nexus 4 Bought from US thro my friend.Current Android version id 4.4.2..My Service Provider is Airtel. All my google applications like Gmail, Maps, Play,Google Plus are working fine in WIFI.But when i try to refresh or update these application thro Airtel 3g,i am getting No Connection Error.

All my 3rd party apps like Facebook,Whatsapp are working fine in 3G.

View 3 Replies View Related

General :: Google Maps App Doesn't Sync Names With Google Bookmarks

Apr 17, 2013

I'm using the latest version of Google Maps on JB 4.2.2 [Nexus 4]..I noticed that I cannot edit the names of my locations in "My Places" in the phone app. So I used Google Bookmarks (google.com/bookmarks) from my PC to edit/rename My Places. However, the names do not sync or carry through to the Google Maps app on the phone. The names in the app are still the generic names, coordinates or street names.

Is there any way to change the names of My Places and get them to sync with the phone app? Really baffling!

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved