如何在OpenLayers 4中启用单击事件来移动概览图?
下面是示例中的代码,与我使用的相同
var map = new ol.Map({
controls: ol.control.defaults().extend([
new ol.control.OverviewMap()
]),
layers: [
new ol.layer.Tile({
source: new ol.source.OSM()
})
],
target: 'map',
view: new ol.View({
center: [50000
我想知道是否有一种方法来检测用户的输入是否在希腊语字符集中。
编辑:
为了更清楚,我需要识别用户类型的语言,而不是手机的区域设置。
例如,我的手机是英文的,假设我的键盘是俄文的,getDefault()返回"en",但我需要有"ru“。
我不知道这是从android的盒子里得到的,也许是一种检测字符串字符代码的方法,看看是用英文字母表还是用另一个字母。对此有什么看法吗?
我想就像
if character belongs to K then is English
(where K is the essemble of english characters)
解决方案: