Geolocation is the identification of the real-world geographic location of an object, such as a cell phone or an Internet-connected computer terminal. Geolocation may refer to the practice of assessing the location, or to the actual assessed location.

learn more… | top users | synonyms

0
votes
2answers
36 views

Is there a way to know which direction one iPhone is from another?

Presume I have two+ iPhones connected to the same server. Using the sensors built in the iPhone and any possible calculations based on their information, is there any way to tell which direction one ...
0
votes
0answers
29 views

How to dynamically show current location and aim like Google Maps app Android?

How to achieve that of the Google Maps app for android (below figure) for my own location-based app? Updates It appears I can achieve my goal using MyLocationOverlay + MapView according to this. ...
1
vote
1answer
43 views

Android - Calculate Compass Angle in Degrees

I have a basic app, which tells the user to point to certain angle for example 55. Now I have a compass which gets the azimuth, pitch and roll, I followed this tutorial ...
1
vote
0answers
38 views

Adding “Around me”-like directional arrows to UITableView

I'm trying to develop an App with an "Around Me"-like feature of a location list with small directional arrows on the side. Bearing and offset to the different locations hadn't been a problem thanks ...
0
votes
3answers
91 views

Calculating angle between two vectors?

I'm developing an iOS app, which has to show POIs (points of interest) depending on device heading. I used CLLocationManager to get user's location and heading. I have one pair of destination's ...
-1
votes
0answers
74 views

IOS compass with Google Maps API Javascript [closed]

How do I can to use ios compass with Google Maps API Javascript ? I use this the Google Maps API Javascript and I don't know how enable the compass and to use. Can You help me ? Thank !
0
votes
0answers
13 views

Best Compass + SMACSS structure?

As a lazy web engineer, one of my passions is always look and try to reach the perfect workflow. So, lately i've read a lot about SMACSS and OOCSS and i want to start applying it to my projects. I've ...
1
vote
0answers
30 views

How to use Compass in Blackberry 7.0?

I am showing a compass in my application. I have used the BlackBerry Developer guide "Adding a compass field to an application" to show a compass. Now I want to use the bearing to show direction in my ...
0
votes
1answer
53 views

Point arrow to location (geolocation)

i want to make a sort of compass on a mobile website. This is what I have: This is what i want: I save my current location in the localstorage. Then for example 1km further I check my location ...
0
votes
1answer
68 views

Accurate compass mobile website

I want to make a compass in the browser (mobile website, NOT native applicaton). The purpose is that you have a button "Save current location to localstorage" and when you click on that button you ...
0
votes
1answer
74 views

Google Maps API Utilizing iOS's Native Compass Device Orientation

If you open up Maps on the iPad and click the location arrow twice. You will notice that the map will rotate depending on the device's orientation. This is what I want my application's map to do in my ...
0
votes
0answers
20 views

Compass-like framework that outputs CSS as well as HTML

Is there a framework like Compass, or one that extends Compass, to output CSS as well as a boilerplate HTML document?
0
votes
2answers
69 views

Format for transmitting live Accelerometer/Compass data over network

What's the best way to transmit a history of accelerometer/compass data to a server? I have a very basic Android application that transmits GPS point data to a web server. I would like to now ...
0
votes
1answer
230 views

Why does `middleman serve` work, but `middleman build` fails to compile this Sass?

When I just run middleman to serve, all.css gets compiled fine, consisting of just a call to +box-shadow(none): /* line 1, /home/yang/asdf/source/stylesheets/content.css.sass */ div { ...
0
votes
1answer
38 views

Display iOS Compass Within iOS Native Web App Page

I am trying to figure out how to display an iOS Compass directly onto a page I created from within my iOS Native Web App. I don't want to tap on an area and it bring me to the compass application. ...
0
votes
1answer
59 views

Compass Mode on MapView

I want to add Compass to my Map to get the people around me, like If I faced to North then I can only see those people who r in North and next to me, see in image I m on a Map view at particular ...
0
votes
0answers
33 views

Compass spriting in Rails 3.2 issue

I use the latest compass-rails gem in my Rails 3.2.12 app. Have a bunch of *.gif icons in /app/assets/images/auth_icons/ folder and an "added.css.scss" stylesheet. @import "compass/reset"; @import ...
0
votes
1answer
98 views

Bundler configuration to compile sass files

I am getting an error with compass watching my directory correctly but fails to generate my output. I am thinking it has to do with either my GEMFILE or compass.rb config file. ERROR: ...
0
votes
1answer
506 views

Show user exact or approximate location n google maps in asp.net c# in web site

I want to show user current location or approximate location on google maps in my web site using asp.net c#.Is it possible??? If it is kindly help me.I saw many tutorials but fail.
0
votes
0answers
58 views

Compass to annotation with Titanium

I'am trying to build a compass that heading to a annotation with Titanium on a map. It's already succeeded me to build a normal compass with the compass function in Titanium. I am unable to make the ...
1
vote
2answers
556 views

Sass/Compass not compiling using Guard with Middleman setup

I'm running Mac OS X Mountain Lion and recntly setup Ruby via RVM. I then installed Middleman (http://middlemanapp.com/) which works fine. I've been able to add configuration settings and do a build ...
0
votes
0answers
143 views

Rotating an image like a compass (not working)

I want to rotate a specific image on an acitivity. I found everything where we set the contentview to an image, or drawing something, but again full screen. sensorChanged method: float[] mGravity2; ...
0
votes
1answer
32 views

Compass / scout import

I just started with compass with scout for the GUI. I'm trying to follow along with a demo and am a bit confused about @import. When I do @import "compass" everything compiles fine. However when ...
0
votes
1answer
141 views

How to show direction on map based on calculated angle in degrees

I have calculated angle between two Latitude and Longitude coordinates as below code.It returns angle as 3 in radians, and 193 in degrees. I want to show arrow marker on map based on this angle.How to ...
1
vote
0answers
160 views

Showing a compass image that rotates with the map in usertrackingmodefollowwithheading (iOS 6)

In Apple's Maps app, when UserTrackingModeFollowWithHeading is enabled, there is a compass image that shows the direction of North-South and rotates with the rotation of the map. I have enabled ...
0
votes
0answers
23 views

Software compass sensor

Is there a way to develop a compass sensor emulator (based on GPS travel direction), so for devices that has no compass sensor (but has GPS) can emulate the hardware sensor? This way apps that want to ...
2
votes
0answers
36 views

IOS Compass Reading comes out different in different controllers

I have a problem with compass reading. I have two different controllers and in both the controllers the compass reading turns out different in the same location and same direction. How to fix that? ...
0
votes
1answer
253 views

Android magnetometer returning random values

I am building an Android application which logs the degrees of the compass of the device into a file. There are two methods the get this degrees: Method 1: SensorManager mSensorManager = ...
0
votes
2answers
1k views

How to select with version of Zurb Foundation to use for a CodeKit + Compass + Sass Project

I was hoping to use the new version (v4) of Foundation for a responsive project I'm working on so I installed v4 via gem install zurb-foundation the other day and got CodeKit up and running with it. ...
0
votes
1answer
192 views

issue using compass and zurb-foundation

Hi I have zurb foundation and I'm totally newbie. I'm using a ubuntu 12.04 ppc (g5) machine and I did the installation from the terminal, everything went ok, but when I try to create a project using ...
0
votes
1answer
99 views

How i get android compass inside LocationListener activity?

I create an android application with LocationListener activity.I can get location but i want add a compass inside.How i can do this?I use on LocationChanged for show with a text the bearing between ...
0
votes
0answers
74 views

Why is the OSX system Ruby being used instead of RVM default (SilverStripe-Compass module)

I recently updated SilverStripe on my dev server to v3.0.5 using Composer which happened to pull in the silverstripe-compass module. I happen to use compass externally (not the SilverStripe module). ...
0
votes
0answers
75 views

Add compass to mapview in rotate view

I created a RotateView of a MapView (like compass) using the code: mSensorManager = (SensorManager) getSystemService(SENSOR_SERVICE); mRotateViewContainer = (LinearLayout) ...
0
votes
1answer
134 views

How to put MKMapView in compass mode?

I have placed an MKMapView on my .xib. It works fine, but I need the map to rotate according to the compass heading? I have read about "compass mode". Perhaps I need to set the MKMapView property of ...
0
votes
1answer
111 views

Why won't print.scss load compass/reset on Heroku?

On localhost, Compass works perfectly. screen.scss loads compass/reset just fine. So does print.scss. On Heroku, screen.scss still works, but print.scss gives this error: Error compiling CSS asset ...
0
votes
1answer
52 views

Compass and http_images_path

I'm on compass 0.12.2...I'm trying to use the the config reference http_images_path in the config.rb but it doesn't look like it is using this reference...it still resolves the image to my local ...
0
votes
0answers
263 views

PHPStorm and Compass Watch error

I've just made the switch from NetBeans to PHPStorm, and while I'm mostly enjoying the change, I've started to get an error pop-up from time to time on my compass watch routine (which I run directly ...
2
votes
3answers
403 views

Javascript v3 Google maps rotate map

I cant seem to find anything about this anywhere. Its because i am trying to make the map rotate around the user. google maps javascript v3 doesnt seem to be doing this. wanting to ask google ...
0
votes
0answers
75 views

Get iPhone heading during UIImagePickerController taking image

I am in a situation where i want to get iPhone's heading (Direction angle) while UIImagePickerController is taking picture. I have seen EXIF details but there is no angle information returned by ...
1
vote
0answers
98 views

Compas Calibration

i want to show toast to calibrate the compass if it is not well calibrated before using compass as in Iphone Compass Calibration toast appears if compass is not well calibrated. how to achieve this ...
3
votes
1answer
330 views

Rails 3.2.12 app sass/compass @import failing in production only

Okay, so I have had this issue before where the @import in my css.scss files required the extension: @import 'layout.css.scss' instead of @import 'layout' Not sure why this only happens in ...
0
votes
0answers
120 views

How to rotate a custom compass needle using SensorManager in android?

I have set up a compass needle in my android application which will point to another point in google map. Now I need the compass to point to the same direction when I rotate the device. I had googled ...
1
vote
0answers
133 views

Animation Compass Plugin not working in Middleman?

Hi I have a problem adding animation plugin in middleman and yes I'm pretty sure I installed animation plugin for compass and I see it on my gem lists. if I add this on my config.rb require ...
0
votes
0answers
77 views

Compass error when trying to compile using Gzip

I am looking for a way to add Gzip compression when I compile SCSS using Compass. I have tried to implement Chris Eppstein's gist for creating a gzip file: see here. His code is: if environment == ...
0
votes
1answer
130 views

Problems with Azimuth calculation when iOS device is in Landscape Right

I have written an Augmented reality app for iOS which uses location services and GPS, everything works fine when the device is in landscape left but when the devices rotation is landscape right the ...
0
votes
2answers
237 views

Android: Problems calculating the Orientation of the Device

i'am trying to build a simple Augmented Reality App, so I start working with sensor Data. According to this thread (Android compass example) and example ...
0
votes
0answers
96 views

Customizing Compass to work between two geopoints

I have one requirement in which i want to show the arrow towards one location from current location.Also it should move as per the device rotation and should point to same location after location ...
0
votes
2answers
182 views

Make Compass order sprites in a consistent way

How can I make Compass order sprites in a consistent way, so I can have a seperate sheet for hover states? I am using the sprite sheet tools of Compass like this: @import "ui-icon/*.png"; @include ...
0
votes
0answers
221 views

google map api geolocation app offline

I'm using Phonegap to build an app with geolocation. I know how to show your location with google maps api but the only information that I want on the map is: Position of the device (centre) ...
0
votes
1answer
249 views

adding canvas into a LinearLayout

i am programming a compass android app now i'm facing a problem that i want to add a canvas in the main xml file with a back button i designed to let the user go back to the menu i used the addview() ...

1 2 3 4 5 6