indoor-positioning-system

iOS how can I make MapKit display custom indoor map?

时间秒杀一切 提交于 2019-12-07 10:33:02
问题 I'm trying to create a map of the office I'm working at. I have a high resolution image, and would like to autorotate it in the direction the user is heading, allowing the user to navigate around the map. I thought this could be accomplished using CoreMotion/CoreLocation and a UIScrollView, but this seems like there's some work involved. So I'm wondering if there are easier solutions for combining a custom map and direction/position on that map - can MapKit handle this for me? Are there other

How to map in real time using indoor beacons on Android

拟墨画扇 提交于 2019-12-07 09:53:33
How to map in real time using indoor beacons on Android? Did tests using the SDK Estimote however, they do not have support for Android in indoor and do not have a method that returns the distance to the beacon. With that, I'm using Alt SDK that returns me the distance. But not her how to solve these doubts: 1) create a map (2D or 3D Google Maps type) with the location map of the inside of a room or shop for example. 2) show the location of the user's route to the beacon. 3) how to deal with the route to the beacon avoiding collision enters walls on the map? 4) how to locate the user's

Showing place names on Google indoor map

老子叫甜甜 提交于 2019-12-04 04:44:09
问题 I m trying to get Google indoor maps to work inside my app. When I look at a building in Google maps with indoor information available it shows the name of the places in it. I looked up the sample Google Indoor maps project, putting new latitude and longitude the sample project shows the building but not all the name of places. How do I make it show the same information as Google maps show ? Here is the code for IndoorDemoActivity public class IndoorDemoActivity extends FragmentActivity {

Multi-point trilateration algorithm in Java

ε祈祈猫儿з 提交于 2019-12-04 03:55:52
I'm trying to implement a trilateration algorithm into my Android app to determine a user's indoor location. I'm using ultra-wideband beacons to get the distances to fixed points. I was able to adapt the method suggested in Trilateration Method Android Java as follows: public LatLng getLocationByTrilateration( LatLng location1, double distance1, LatLng location2, double distance2, LatLng location3, double distance3){ //DECLARE VARIABLES double[] P1 = new double[2]; double[] P2 = new double[2]; double[] P3 = new double[2]; double[] ex = new double[2]; double[] ey = new double[2]; double[] p3p1

How to design an Android indoor map of a building? [closed]

ぃ、小莉子 提交于 2019-12-03 05:08:56
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed last year . I want to design an Android application which can help students and others navigate their way around a particular building(with one floor) showing walking directions to classrooms. I need help with it. 回答1: This is the kind of project you normally develop for your thesis. It is much

How does Google Indoor Navigation work?

泄露秘密 提交于 2019-12-03 05:06:16
问题 For a project at my university I have to collect information about Google Indoor Maps. I spent several hours searching information about how Google Indoor Navigation really works. I've found several links on how to create Google Floor Plans like this: http://support.google.com/gmm/bin/answer.py?hl=en&answer=1685896 And how you can improve location accuracy with the Google Maps Floor Plan Marker app: http://support.google.com/gmm/bin/answer.py?hl=en&answer=2667756&topic=1685871&ctx=topic They

How to design an Android indoor map of a building? [closed]

此生再无相见时 提交于 2019-12-02 18:24:49
I want to design an Android application which can help students and others navigate their way around a particular building(with one floor) showing walking directions to classrooms. I need help with it. This is the kind of project you normally develop for your thesis. It is much larger and more complex of what it can look at a first glance. Googling around you will find a lot of BCS and master thesis on this topic. Read them and you will find almost all the information you need to develop your own system. As a starting point you can use redpin: http://redpin.org/ . While Google Maps can

Indoor Navigation using I-Beacon- Accuracy is changing rapidly

主宰稳场 提交于 2019-12-01 06:20:38
问题 I am doing an indoor navigation application using I-Beacon. For that i am using the accuracy given by the beacon. But it is changing rapidly. Since the value is changing, the X and Y coordinates of the user location, which has to be calculated is also varying even when i am static. So please help me to make the accuracy a constant when I m not moving. Thanks in advance 回答1: I suggest you to read the following article about the experience with two positioning algorithms Trilateration and

Is wifi/bluetooth Triangulation(not trilateration) using a mobile device possible?

一曲冷凌霜 提交于 2019-11-30 15:17:07
Well for triangulation you need to have the direction from which your device is receiving the signal.We can calculate Angle of Arrival for that but calculating that angle requires an array of receivers. Is a cell phone capable of calculating Angle of Arrival? I am asking this because I have came across the terms like wifi/BLE triangulation, calculating position by triangulation etc but they're actually referring to Trilateration in most of the cases. I know how trilateration works for a mobile and all the details but I don't think Triangulation is possible. And if it is possible, how is it

How to improve accuracy of indoor positioning?

自古美人都是妖i 提交于 2019-11-29 21:58:43
I should be developing an indoor positioning system for some place , so I started by gathering info about how to develop such a system , the question I am up to now is : what controls the accuracy of positioning and how to improve it ? I found different APIs and projects with various accuracies , for example : ericsson indoor positioning API provides an accuracy within 10 meters , while Qubulus API provides an accuracy within 4 meters , and I met some projects like iDOCNET which claims to provide an accuracy of about 1.2 meters. So, what is the main component of the indoor navigating systems