2018년 8월 브라우저 점유율
2018년 8월 브라우저 점유율
여전히 한국은 IE 점유율이 높은것 같음.
네이버 웹 브라우저 2차 베타 테스트가 시작 되었습니다.
사전 신청자들만 다운로드/설치가 가능합니다.
이미 대부분의 기능이 공개되었지만
기억에 남는 기능만 골라서 포스팅해봅니다.
총 3개의 코드가 발급됩니다.
하나는 본인이 2개는 초대용으로 배포를^^
저는 직원의 나눔으로 설치를 해볼수 있었습니다.
▼ 웨일 홈페이지 다운로드
▼ 인증 키를 입력하고 나서야 다운로드 및 설치가 가능합니다.
▼ 설치를 하고 나면 북마크 및 설정 가져오기가 뜹니다.
기존에 깔린 브라우저가 이것저것 있는지라 그래도 현재 메인은 크롬이라
크롬에서 가져오기를 했습니다.
▼ 허허..기존 자동 완성 아이디 정보와 북마크가 그대로 가져와졌네요.
비밀번호까지..안물어봤자나..!!
아무 인증도 없이 다 가져와지다니 ㅎㅎ
깔끔한 인터페이스입니다.
빈 화면에 현재 시간이 똭..
▼ 아래 화면은 브라우저에 탑재된 기능들 입니다.
페이지내에서 드래그를 통하 검색이 가능합니다.
대부분의 브라우저들이 자체 포탈을 지원하는 것과 같습니다. 퀵서치가 가능합니다.
파파고 번역기능도 가능합니다.
▼ 그 다음으로 기억에 남는 기능이 화면 분할 기능입니다.
단순 화면이 2개가 되는 것이 아니라 한쪽에서 클릭한 링크가 다른쪽 창에서 열리는 기능입니다.
쇼핑이나 블로그 이용중에 매우 유용한 기능이 될 것같습니다.
▼ 또 한가지 제가 궁금했던 것이 개발자 도구인데요.
어떤 기능이 있을까 하며 F12를 눌렀더니.. 먼가(?) 익숙한 화면이 보이더라구요.
▼ 창 분할을 시켜보니..역시나
크롬 확장기능이 네이버 웨일에서 구동이되네요. 이건 뭐지...하며 여튼 그렇더라구요.
전체적으로 사용해 본 느낌은 크게 2가지입니다.
1. 브라우징 속도(?) 크롬과 그리 다르지 않다.
2. 창분할 모드의 기능은 아주 유용하다!
베타 버전이라고 하지만 높은 완성도를 보이는 것 같습니다.
어서 정식 출시가되어서 많은 업그레이드 기대해봅니다.
현재 위치를 읽어와서 구글맵에 마커를 표시해주는 기능입니다.
Test Url : http://www.uhoon.co.kr/test/1208.html
<!doctype html> <html> <head> <meta charset="utf-8" /> <title>getCurrentPosition + Googlemap marker </title> <script src="http://code.jquery.com/jquery-latest.min.js"></script> <script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script> <script type="text/javascript"> <!-- function fnGetCurrentPosition() { if (navigator.geolocation) { $("#latlng").html(""); $("#errormsg").html(""); navigator.geolocation.getCurrentPosition (function (pos) { lat = pos.coords.latitude; lng = pos.coords.longitude; $("#latlng").html("latitude : " + lat + " longitude : "+ lng); var mapOptions = { zoom: 16, mapTypeId: google.maps.MapTypeId.ROADMAP, center: new google.maps.LatLng(lat,lng) }; map = new google.maps.Map(document.getElementById('map'),mapOptions); var myIcon = new google.maps.MarkerImage("http://google-maps-icons.googlecode.com/files/restaurant.png", null, null, null, new google.maps.Size(17,17)); var marker = new google.maps.Marker({ position: new google.maps.LatLng(lat,lng), map: map, draggable: false, icon: myIcon }); markers.push(marker); },function(error) { switch(error.code) { case 1: $("#errormsg").html("User denied the request for Geolocation."); break; case 2: $("#errormsg").html("Location information is unavailable."); break; case 3: $("#errormsg").html("The request to get user location timed out."); break; case 0: $("#errormsg").html("An unknown error occurred."); break; } }); } else { $("#errormsg").html("Geolocation is not supported by this browser."); } } //--> </script> </head> <body> <div id="errormsg"></div> <div id="latlng"></div> <input type="button" value="GetCurrentPosition " onclick="Javascript:fnGetCurrentPosition();" /> <div id="map" style="width:760px;height:400px;margin-top:20px;"></div> </body> </html>
getCurrentPosition 자세히 알아보기 : http://www.uhoon.co.kr/API/1200