Wikitude
play_for_work
Forum
FAQ
Documentation
Download
wikitude.com
How can we help you today?
Enter your search term here...
Search
Start a new topic
Discussions
Wikitude SDK (Android, iOS, UWP)
Wikitude SDK Questions or Problems
set a point in the world geo
V
Vincenzo Luongo
started a topic
over 7 years ago
set a point in the world geo
2 Comments
Oldest First
Popular
Newest First
Sorted by
Oldest First
V
Vincenzo Luongo
said
over 7 years ago
Hello,
I'm trying in every way to bring up a geo-point in the world but I can not see even if I do not by any error.
The code I'm trying to use is:
var myGeoLocation = new AR.GeoLocation(40.8219, 14.1872);//BMT mostra d.m.
var myCircle = new AR.Circle(1,
{ onClick : function() {
alert('Cliccato: circle');
},
style: {fillColor: '#00ABEF'}
});
var myGeoObject = new AR.GeoObject(myGeoLocation , {
enabled : false,
drawables: {cam: myCircle}
});
but I can not. What's wrong?
W
Wolfgang Damm
said
over 7 years ago
Hi Vincenzo,
you have set the AR.GeoObject to enabled: false in its constructor. This will hide it so it is totally okay it is not visible.
Just remove the enabled: false property, or replace it with enabled: true.
Login
or
Signup
to post a comment
More topics in
Wikitude SDK Questions or Problems
Instatiation of WTArchitectView compile errors
Point of interest - native iOS
Slider
Camera lagging / slow in native Swift application
Create a web service
N-th ImageDrawable not displayed
Radar Example
stop defaultlocationmanager and use architectview.injectlocation ios 10
WTC Size Limit
AngularJS and wikitude
See all 3735 topics
© 2020
Wikitude
GmbH ·
Imprint
·
Legal
Vincenzo Luongo