How to implement GPS service in laptop?

41 views
Skip to first unread message

Md. Masudur Rahman

unread,
Dec 2, 2010, 5:40:24 AM12/2/10
to Smart Geeks
Hello member,
Do some research about how GPS service can be enabled in laptop. Looks
like some people have already done some work in this field. I dag in
the web and got the following links. Check it out in your free time:
http://www.microsoft.com/windowsxp/using/mobility/expert/ballew_03may27.mspx
http://www.ehow.com/how_4811441_use-gps-laptop.html
http://techie-buzz.com/softwares/free-gps-usin-geosense-for-windows.html
http://www.gizmoactive.com/laptop-gps-software.html

Our main focus is different. When GPS will be enabled, we will develop
some GPS based application for locating other objects like saving
people in danger, house in fire, criminals and so.. on.

Start checking and share your views...spend more time in internet..

Lets wish goodluck

Debasish Chakroborti

unread,
Dec 4, 2010, 1:56:10 PM12/4/10
to Smart Geeks
i read about GPS from internet,and gather some information.
GPS consists of three parts:1) the space segment,2) the control
segment,3) and the user segment
US Air Force develops, maintains, and operates the 1 and 2.

third segment is free for use.

for 3 we need a GPS receiver.and our work is related to third
segment.

generally all GPS receiver can calculate latitude and longitude if
three satellites supported it.
using four satellite GPS receiver can calculate additional information
altitude .

after calculate position (latitude, longitude and altitude) , the GPS
unit can calculate other information, such as speed, bearing, track,
trip distance, distance to destination, sunrise and sunset time and
more.






Md. Masudur Rahman

unread,
Dec 5, 2010, 10:21:31 AM12/5/10
to Smart Geeks
Always try to post some links so that other people can get some chance
of reading the article you read. Anyway, what should be our way to
start some work?
I was planning use some API provided by google. That means google will
provide us the service by their satellite system and we will use their
service for our work. Is that possible? Can you guys look into how
Google Maps really working? I think there should be some helps

Debasish Chakroborti

unread,
Dec 7, 2010, 8:37:49 AM12/7/10
to Smart Geeks

Debasish Chakroborti

unread,
Dec 7, 2010, 8:49:27 AM12/7/10
to Smart Geeks

Masud Rahman

unread,
Dec 7, 2010, 10:03:14 AM12/7/10
to smart...@googlegroups.com
Dear members,
well, I did some research on this and probably we are looking for this which is called Geocoding. check it out in your time
http://code.google.com/apis/maps/documentation/geocoding/index.html




--

Masud Rahman
Lead Application Systems Engineer
www.nochallenge.net
Skype: md_masudur_rahman

Technology.Simplified

MD. shaifuddin -al-masud

unread,
Dec 8, 2010, 10:34:57 AM12/8/10
to Smart Geeks
Thank u sir. I have joined today. And i am reading ur links. Thank u
all.

On Dec 7, 9:03 pm, Masud Rahman <masud.rah...@nochallenge.net> wrote:
> Dear members,
> well, I did some research on this and probably we are looking for this which
> is called Geocoding. check it out in your timehttp://code.google.com/apis/maps/documentation/geocoding/index.html
>
> On Tue, Dec 7, 2010 at 5:49 AM, Debasish Chakroborti
> <joy08cs...@gmail.com>wrote:
>
>
>
> >http://www.vbdotnetheaven.com/UploadFile/scottlysle/VBQuickMap0318200...

MD. shaifuddin -al-masud

unread,
Dec 8, 2010, 1:11:32 PM12/8/10
to Smart Geeks
its also easy to put google map on a windows form in c# by using web
browser....

MD. shaifuddin -al-masud

unread,
Dec 8, 2010, 1:33:06 PM12/8/10
to Smart Geeks
Sir, i have read this link. It speaks about Geocoding and reverse
geocoding. In geocoding When i know my location i can use this to get
the latitude and longitude of that location. For example: "http://
maps.googleapis.com/maps/api/geocode/json?address=khulnauniversity,
+bangladesh&sensor=true"
can be used to get the latitude and longitude of khulna university.

And latitude and longitude can be used to get the name of the location
in reverse geocoding.



On Dec 7, 9:03 pm, Masud Rahman <masud.rah...@nochallenge.net> wrote:
> Dear members,
> well, I did some research on this and probably we are looking for this which
> is called Geocoding. check it out in your timehttp://code.google.com/apis/maps/documentation/geocoding/index.html
>
> On Tue, Dec 7, 2010 at 5:49 AM, Debasish Chakroborti
> <joy08cs...@gmail.com>wrote:
>
>
>
> >http://www.vbdotnetheaven.com/UploadFile/scottlysle/VBQuickMap0318200...

Md. Masudur Rahman

unread,
Dec 8, 2010, 1:42:40 PM12/8/10
to Smart Geeks
I wanted to make this thing worked in my browser what is called
Geolocation
http://www.mozilla.com/en-US/firefox/geolocation/
Mozilla also tries to support using google service. We need to know
whether google can detect our browser location.
these links contain more info
http://code.google.com/apis/maps/faq.html#geocoder_countries
http://www.geobase.info/

My idea is somehow our browser need to be located by any service and
then we will set that browser's coodinate in the map.


On Dec 8, 10:33 am, "MD. shaifuddin -al-masud" <ronyku...@yahoo.com>
wrote:

MD. shaifuddin -al-masud

unread,
Dec 10, 2010, 7:14:17 AM12/10/10
to Smart Geeks
I studied quite a few in this link:http://code.google.com/apis/gears/
api_geolocation.html#positionoptions
In this link they give the following javascript code...

<script type="text/javascript" src="gears_init.js"></script>
<script type="text/javascript">
var geo = google.gears.factory.create('beta.geolocation');

function updatePosition(position) {
alert('Current lat/lon is: ' + position.latitude + ',' +
position.longitude);
}

function handleError(positionError) {
alert('Attempt to get location failed: ' + positionError.message);
}

geo.getCurrentPosition(updatePosition, handleError);
</script>

i also used the attached gears_init,js. But when i run this code
within the body of html they give me the following error messege...

"Attempt to get location failed. Network provider at
http//:www.google.com/loc/json did not provide a good position fix"




On Dec 9, 12:42 am, "Md. Masudur Rahman" <masudcs...@gmail.com> wrote:
> I wanted to make this thing worked in my browser what is called
> Geolocationhttp://www.mozilla.com/en-US/firefox/geolocation/
> Mozilla also tries to support using google service. We need to know
> whether google can detect our browser location.
> these links contain more infohttp://code.google.com/apis/maps/faq.html#geocoder_countrieshttp://www.geobase.info/
Reply all
Reply to author
Forward
0 new messages