The MP3car.com Store  

Welcome to the MP3Car.com forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. Registering will also remove advertisements. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Go Back   MP3Car.com > Mp3Car Technical > MacCar

Reply
 
Thread Tools Display Modes
Old 03-13-2007, 06:48 PM   #1
Newbie
 
Join Date: Mar 2007
Posts: 8
My Photos: (0)
Maps.google

Ok,

new here and I have a lot of expierence with macs and the IT world. So if an of you developers needs a beta tester let me know.

now on to my questions.

I know there are aps for cell phones to get google maps with GPS. Has any one tried to get it working on a MAC. If so with an internet connection this would be the best mapping software, they just added trafic.

ANy ideas?
talk2dug is offline   Reply With Quote
Sponsored Links
Old 03-13-2007, 07:14 PM   #2
Low Bitrate
 
Join Date: Sep 2006
Posts: 83
My Photos: (0)
you might want to search a little bit. BugByte had a little guide on how to get GPS and google maps to work. It will take a little work, but it looks like there is no plug-n-play.

EDIT:
Well I tried to find it but I couldn't . But here is one for RoadNav:
http://www.mp3car.com/vbulletin/showthread.php?t=90035

That one links to the relevant post here:
http://www.mp3car.com/vbulletin/showthread.php?t=85612

Go to post #11 it's bugbyte's instructions on how to do it. I think if you have internet connection 24/7 in the car then your GPS options open up.

Last edited by metalac : 03-13-2007 at 07:24 PM.
metalac is offline   Reply With Quote
Old 03-13-2007, 07:36 PM   #3
Newbie
 
Join Date: Mar 2007
Posts: 8
My Photos: (0)
Thats for google earth, I want google maps. Google earth is impressive but bandwidth intensive as well as not a good solution for an in car navigation. I am going to implement bugbytes GE app because I do geobloging and love me some GE, but if we can get maps.google.cm to work with the cell phone apps its small takes little bandwidth and can be incorporated in front ends liek AMP and all the others.


Keeping in mind the cell phone apps are java. I have it working on my BB 8800 and it give turn by turn as well as live traffic.


Check it out

http://www.mgmaps.com/

Last edited by talk2dug : 03-13-2007 at 08:04 PM.
talk2dug is offline   Reply With Quote
Old 03-14-2007, 01:28 AM   #4
QCar Creator
Jirka Jirout's CarPC Specs
 
Jirka Jirout's Avatar
 
Join Date: Jul 2005
Location: Netherlands
Vehicle: 1993 Tatra 613-4Mi Long
Posts: 541
My Photos: (0)
Quote: Originally Posted by talk2dug View Post
I know there are aps for cell phones to get google maps with GPS. Has any one tried to get it working on a MAC. If so with an internet connection this would be the best mapping software, they just added trafic.

Yes, we have tried this in QCar and it works.
Jirka Jirout is offline   Reply With Quote
Old 03-14-2007, 06:32 AM   #5
Newbie
 
Join Date: Mar 2007
Posts: 8
My Photos: (0)
Where is the download? I have looked for Qcar and can not find it. Or show me/ tell me how to get the app to run on a mac.

Or just point me in the right direction. And ill add it as a plugin into AMP.

THanks
talk2dug is offline   Reply With Quote
Old 03-15-2007, 09:35 AM   #6
Newbie
 
Join Date: Mar 2007
Posts: 8
My Photos: (0)
surprising no one has commented on this. Is it not a viable solution? Are there better free GPS solutions for the mac, besides roadnav. Roadnav is not a good solution.



A bit confused by the lack of responses....
talk2dug is offline   Reply With Quote
Old 03-15-2007, 10:28 AM   #7
Newbie
 
Join Date: Mar 2007
Posts: 8
My Photos: (0)
SO how did you get it to work? Please PM me, I would LOVE to get this working...
talk2dug is offline   Reply With Quote
Old 03-15-2007, 10:45 AM   #8
Takes it in the Rear
kevinlekiller's CarPC Specs
 
kevinlekiller's Avatar
 
Join Date: Dec 1969
Location: Where the penguins and polar bears live.
Posts: 685
My Photos: (0)
http://www.mp3car.com/vbulletin/showthread.php?t=91927 6th link google.com , skimming through the thread says its in closed beta.
kevinlekiller is offline   Reply With Quote
Old 03-15-2007, 01:22 PM   #9
Newbie
 
Join Date: Mar 2007
Posts: 8
My Photos: (0)
Well how about throwing a bone to the community on how to run the GMAPS on the mac.....
talk2dug is offline   Reply With Quote
Old 03-15-2007, 05:00 PM   #10
QCar Creator
Jirka Jirout's CarPC Specs
 
Jirka Jirout's Avatar
 
Join Date: Jul 2005
Location: Netherlands
Vehicle: 1993 Tatra 613-4Mi Long
Posts: 541
My Photos: (0)
OK, here is your bone ;-) This is a basic principle of integration of Google Maps into a Cocoa application.

1. You need to create a web page, that you will be displaying. This can be the standard Google Maps API example with one exception - you need to define the variable map in the body, so it becomes global:
Code:
<body> <div id="map" style = "width:800px; height:512px;"></div> <script language="JavaScript" type="text/javascript"> var map = new GMap2(document.getElementById("map")); map.setCenter(new GLatLng(0, 0)); // or your default location </script> </body>

2. Then you create a Cocoa application, make sure you include the WebKit in the project, create a WebView in a window, point an instance variable (named mapView below) to the window and load the above mentioned document into the WebView.

3. Now you can easily communicate with the displayed map, something like this:
Code:
// you would of course get this by parsing the GPS output NSString *lat = "50.12345" NSString *lon = "04.00012" NSString *jsCmd = [NSString stringWithFormat:@"map.panTo(new GLatLng(%@, %@));",lat, lon]; id document = [mapView windowScriptObject]; NSString *err = [document evaluateWebScript:jsCmd];

This way you can call all the Google JavaScript API functions, typically as a response to OS X GUI actions. Another quick example would bee zoom, called in response to a button click:

Code:
-(IBAction)ZoomIn:sender{ id document = [mapView windowScriptObject]; NSString *jsCmd = @"map.zoomIn();"; NSString *err = [document evaluateWebScript:jsCmd]; }

Jirka Jirout is offline   Reply With Quote
Sponsored Links
Old 03-16-2007, 10:07 AM   #11
Newbie
 
Join Date: Mar 2007
Posts: 8
My Photos: (0)
THANK YOU!!!!!!!!!!!

Now we are talkin........

I will implement this weekend....


Goodonya.....

MMM what a tasty bone..
talk2dug is offline   Reply With Quote
Sponsored Links
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off


All times are GMT -5. The time now is 08:38 PM.


Sponsored Links
The MP3car.com Store

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.1.0
Copyright © 1999 - 2008 Mp3Car.com Inc.
Ad Management by RedTyger
Message Board Statistics