skmaps

SKMaps crashes when add SKViaPoint

本小妞迷上赌 提交于 2020-02-29 05:10:48
问题 I'm using SKMaps to simulate custom routes. It was working fine with navigating a point to another point, I mean use start and destination only: route.startCoordinate = CLLocationCoordinate2DMake(37.9667, 23.7167) route.destinationCoordinate = CLLocationCoordinate2DMake(37.9677, 23.7567) but if I add viaPoints to route, app will crash when I startNavigation: route.startCoordinate = CLLocationCoordinate2DMake(37.9667, 23.7167) route.viaPoints = [SKViaPoint(1, withCoordinate

SKMaps crashes when add SKViaPoint

孤街醉人 提交于 2020-02-29 05:10:34
问题 I'm using SKMaps to simulate custom routes. It was working fine with navigating a point to another point, I mean use start and destination only: route.startCoordinate = CLLocationCoordinate2DMake(37.9667, 23.7167) route.destinationCoordinate = CLLocationCoordinate2DMake(37.9677, 23.7567) but if I add viaPoints to route, app will crash when I startNavigation: route.startCoordinate = CLLocationCoordinate2DMake(37.9667, 23.7167) route.viaPoints = [SKViaPoint(1, withCoordinate

What process should be used to compress SKMaps.zip file for use in Skobbler powered app?

China☆狼群 提交于 2020-01-20 08:09:38
问题 I'm currently using the Skobbler SDK in an Android app to handle mapping and turn-by-turn direction tasks. One issue that came up was the desire to change to frequency at which audio advice is issued from the SDK so that we don't have too many instructions being fired off one after the other. I found this answer to another question which explains the need to modify an advice_places.adv file which I was able to find within the SDK provided SKMaps.zip file. The issue I'm experiencing seems to

What process should be used to compress SKMaps.zip file for use in Skobbler powered app?

十年热恋 提交于 2020-01-20 08:06:19
问题 I'm currently using the Skobbler SDK in an Android app to handle mapping and turn-by-turn direction tasks. One issue that came up was the desire to change to frequency at which audio advice is issued from the SDK so that we don't have too many instructions being fired off one after the other. I found this answer to another question which explains the need to modify an advice_places.adv file which I was able to find within the SDK provided SKMaps.zip file. The issue I'm experiencing seems to

Not able to move map after starting Navigation SKMAPS

*爱你&永不变心* 提交于 2020-01-04 05:21:07
问题 I had added SKMAPVIEW as subview to my UIView, After getting the start and end coordinates, I had calculated route and started navigation.. while calculating the route I'm able to move the map and zoom as my wish. But when I started navigation I'm not able to move the map, but I'm able to zoom in or zoom out in the map.. what should I do in order to move the map after starting the navigation... ??? Thanks in advance... And also I want to rotate the navigation arrow according to the current

Update Annotation API not working

心已入冬 提交于 2020-01-02 11:27:08
问题 I am using update Annotation API in skobbler maps on Android for offline purpose. I change the annotation view and update the annotation via updateAnnotation API. SKAnnotation currentAnnotation = mAnnotations.get(mSelectedIndex); SKAnnotationView currentView = currentAnnotation.getAnnotationView(); currentView.setView(createDrawableFromView(TestActivity.this, true, "2500")); currentAnnotation.setAnnotationView(currentView); mSKMapView.updateAnnotation(currentAnnotation); However,

SKPOITrackerManager not working as excepted

大憨熊 提交于 2019-12-24 11:27:56
问题 I am using SKPOITrackerManager to track self-defined trackable POIs in navigation mode. The arraylist of SKTrackablePOI objects has many elements which are placed near my route. But only one of them is tracked by onReceivedPOIs() . This method only returns a one-element-list. But it is called 5 to 10 times for exactly one POI. I am sorry that I can not post my complete code here due to project agreement. But here I can show you my settings in an implementation of the SKPOITrackerListener

SKMaps(Skobbler maps) Integrated Application uploading error

泪湿孤枕 提交于 2019-12-24 08:14:16
问题 I have integrated SKMaps without pods in my app. When i were uploading it to App Store, it started throwing me error like this Does anyone have any solution? UPDATE I have added the script as provided here in this link:http://ikennd.ac/blog/2015/02/stripping-unwanted-architectures-from-dynamic-libraries-in-xcode/ But after adding script, app started giving too many errors for other frameworks. UPDATE 2: I have checked this answer: Errors building Xcode Project after adding in Run Script fatal

Android: Skobbler, how to limit map view in an area?

為{幸葍}努か 提交于 2019-12-24 04:34:08
问题 I'm new not only on Skobbler but also for Map. At this time, i'm trying to create a mapp app that show only an area. And, what i want are: User can't move out of that area. Don't load any thing (title, .. )outside that area. User can view and zoom in only. I tried with bound like below but it not work: SKBoundingBox boundingBox = new SKBoundingBox(47.087426, 8.257230, 46.874277, 8.637632); mapView.fitBoundingBox(boundingBox, 0, 0); Could you give some hint, please? 回答1: Currently the SDK does

Reciever SKViaPoint for class message is a forward declaration

一个人想着一个人 提交于 2019-12-24 03:43:19
问题 I was trying to make an instance of SKViaPoint with SKViaPoint *point = [SKViaPoint viaPoint:1 withCoordinate:coordinate]; But I am getting a following error: So "No known class method for selector". I checked and I do have the latest version of Skobbler SDK, but I also checked and there is no actual ViaPoint.h. Not in mine neither in the Demo project. So Im wondering is there anything else I should import in order to be able to make SKViaPoint instance? 回答1: Ok, what solved it was importing