Hot & New2012. 8. 16. 21:04

 

 이스라엘 LBS 업체인 AtlasCT 는 HTML5 기반의 TBT navigation을 개발했다고 공식 발표 했다고 합니다.
상품명은 "EverNav" 이며, 최대 강점은 간단한 HTML 코드 삽입으로 웹사이트 나 웹기반의 App과 완벽하게 intergaration 될 수 있는 구조라고 합니다. 이는 HTML5 의 최대 강점인 Cross Platform 지원으로 스마트폰, 타블렛PC,노트북등 다양한 Device 또는 OS환경에 구동이 가능합니다.
또한 AtlasCT는 광고수익쉐어 모델도 같이 발표 했는데요, 사용자가 navigation을 실행할때 광고를 지도위에 노출 시킬수 있고 개발자는 EverNav의 수익쉐어 프로그램을 통해 보다 쉽게 매출을 올릴 수 있다고 합니다.
 
지난 8개월여간 closed beta 테스트를 통해 다양한 안정화를 이루었으며 다음달인 9월에 공식 런칭될 예정인데요, HTML5 기반의 실시간 rendering turn-by-turn 안내방식은 Telenav, TCS 등에 이어 전세계적으로 3번째 입니다.
 
TeleNav 는 지난 1월에 세계 최초의 HTML5 기술을 활용한 navigation을 발표하였으며, 3월에 공식 release 하였습니다. 기본적인 방식은 해당 코드를 개발자에게 Free로 오픈하고, 위치기반 광고를 통한 수익쉐어를 기본 BM으로 활용하고 있습니다.

TCS의 경우 지난 6월에 발표하였으며, Automotive 시장에 타켓팅 되어 있습니다.

아래 간단하게 EverNav 코드 실행을 간단하게 설명드립니다.

Integration

1.  Include EverNav SDK in your mobile web application by adding the include statement inside the <head> tag.
The include statement will be sent to your email immediately after registrating as a developer.

2.  Start navigating with just one line of code by calling the 'navigate' Javascript function wherever you want in your code:

 <script type="text/javascript">EverNav.navigate('15 main st, new york');</script>

3.  That's it. Really!

More Examples

Destination

EverNav SDK lets you define the destination by an address (e.g. "15 main st, new york"):

var destination = {
  address: "15 main st, new york",
};
EverNav.navigate(destination);
Or by latitude/longitude coordinates (e.g. "40.71482,-74.00615"):

var destination = {
  latitude: 40.71482,
  longitude: -74.00615,
};
EverNav.navigate(destination);
You can also give the destination a custom title (e.g. "Plaza Hotel"):

var destination = {
  title: "Plaza Hotel",
  latitude: 40.71482,
  longitude: -74.00615,
};
EverNav.navigate(destination);

Customize the user interface (UI)

EverNav SDK lets you set a master color to make the navigation experience look similar to your website or application:

var settings = {
  color: "fe8713", // CSS Color code (RGB)
};
EverNav.setSettings(settings);
EverNav.navigate("15 main st, new york");

Posted by 알 수 없는 사용자