在此处地图上设置块

时间:2018-08-12 20:40:35

标签: html css here-api

我尝试在带有HERE地图的网页上执行此类操作 enter image description here

灰色块是应该放置地图的块(我在关闭wifi时这样做了)。 html代码是:

def countTriplets(arr, r):
    sum_array=[]
    if int(r)==1:
        for x in range(len(arr)-1):
            sum_array.append((x*(x+1))/2)
        return int(sum(sum_array))    # change in this line
    else:
        exp_dict={}
        tripletCount=0
        for x in arr:

            if x in exp_dict:
                exp_dict[x]+=1
            else:
                exp_dict[x]=1
        for y in exp_dict:
            #print(y)

            if ((y % r ==0) or (y==1)) and ((y*r in exp_dict) and (y*r*r in exp_dict)):
                #print((exp_dict[y]*exp_dict[y*r]*exp_dict[y*r*r]))
                tripletCount+=(exp_dict[y]*exp_dict[y*r]*exp_dict[y*r*r])
                #print("hello I am a computer nerd")

        return tripletCount

但是,当wifi开启时,带有按钮的块会消失,无论这些块的“ z-index”值是否比map-container大 enter image description here 如何用按钮制作方块在地图上?如果您知道,请告诉我。预先感谢。

1 个答案:

答案 0 :(得分:0)

对于我来说,您要实现的目标还不是很清楚,但是从我的角度来看,将z-index添加到父div的第一个子容器中就足够了。不过,我通常建议不要在传递给地图的容器中添加任何内容。有两种选择,一种是使用id =“ map”在div父级的容器中构建UI,或者使用库UI模块并与其构建自定义按钮。