This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<!-- Only one root node is allowed in template. --> | |
<div class="container"> | |
<text class="title">Location Finder</text> | |
<text>To find your place in the application, firstly press the "Obtain the geographical location" button. Then click the "show my location" button. | |
After your location is determined, "Get information" will be automatically called for information about the location. | |
</text> | |
<input type="button" class="mybutton" onclick="getGeolocation" value="Obtain the geographical location." /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import geolocation from '@system.geolocation'; | |
import battery from '@system.battery'; | |
export default { | |
data: { | |
index: 0, | |
latlon: "", | |
accuracy: 0, | |
battery: 0, | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container" style="flex-direction: column;"> | |
<text class="title"> | |
Konumunuz: {{latlon}} | |
</text> | |
<text class="title"> | |
Dogruluk: {{accuracy}} | |
</text> | |
<text class="title"> | |
Batarya Durumu: {{battery}} | |
</text> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<swiper class="container" index="{{index}}"> | |
<div class="swiper-item first-page"> | |
First Page | |
</div> | |
<div class="swiper-item second-page"> | |
Second Page | |
</div> | |
<div class="swiper-item third-page third-page-content"> | |
Third Page | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default { | |
data: { | |
index: 0, | |
}, | |
onInit() { | |
} | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<swiper class="container" index="{{index}}"> | |
<div class="swiper-item first-page"> | |
<div class="first-page-content"> | |
<text class="title"> | |
Konumunuz: {{latlon}} | |
</text> | |
<text class="title"> | |
Dogruluk: {{accuracy}} | |
</text> | |
<text class="title"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<swiper class="container" index="{{index}}"> | |
<div class="swiper-item first-page"> | |
<div class="first-page-content"> | |
<text class="title"> | |
Konumunuz: {{latlon}} | |
</text> | |
<text class="title"> | |
Dogruluk: {{accuracy}} | |
</text> | |
<text class="title"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import geolocation from '@system.geolocation'; | |
import battery from '@system.battery'; | |
export default { | |
data: { | |
index: 0, | |
latlon: "", | |
accuracy: 0, | |
battery: 0, | |
percentage: 0, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import geolocation from '@system.geolocation'; | |
import battery from '@system.battery'; | |
export default { | |
data: { | |
index: 0, | |
latlon: "", | |
accuracy: 0, | |
battery: 0, | |
percentage: 0, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<swiper class="container" index="{{index}}"> | |
<div class="swiper-item first-page"> | |
<div class="first-page-content"> | |
<text class="title"> | |
Konumunuz: {{latlon}} | |
</text> | |
<text class="title"> | |
Dogruluk: {{accuracy}} | |
</text> | |
<text class="title"> |