0
I have create Map view in my application, every thing works fine
except the title annotation

my rhodes version is 3.0.2
Here is my code

 @customer = User.find(@params["id"])
    map_params = {
              :settings => {:map_type => "hybrid",:region =>
[@customer.lat, @customer.lag, 0.2, 0.2],
                            :zoom_enabled => true,:scroll_enabled =>
true,:shows_user_location => false,
                            :api_key => 'Google Maps API Key'},
              :annotations => [{
                                  :latitude => @customer.lat,
                                  :longitude => @customer.lag,
                                  :title => "#{@customer.name}",
                                  :subtitle => "View customer",
                                  :url => "/app/User/
{#{@customer.object}}"
                              }]
         }

    MapView.create map_params

while googling i found title annotations is not yet implemented in
Android, is there any other alternative way to do it?

In my application  i have to do like this......
[Screen Image][1]

Is it possible?
4

2 に答える 2

1

現在、Androidに代わるものはありません。ただし、レーダーにはいくつかの開発項目があります。

MapViewアノテーションを実装する

ピンアイコンの変更

複数行の注釈

于 2011-08-16T23:06:53.747 に答える
0

Rhodesソースコードのマスターブランチをダウンロードすると、Androidにアノテーションが表示されます。

これを行うには、次の手順に従います。

マスターブランチをPCに複製します(これらの手順も表示されます)。

$ git clone git://github.com/rhomobile/rhodes.git
$ cd rhodes

RHO_HOME変数を変更するbinパスをパスに追加します(環境変数)(推奨:コンピューターを再起動します)

ファイルrhobuild.ymlを新しいRhodesフォルダーに追加します

走る

set-rhodes-sdk 

(すべてを正しく実行した場合は、ここに新しいRhodesフォルダー/パスが表示されます)

走る

rhodes-setup  

指示に従ってください

アプリケーションのクリーンビルドを実行します

これがお役に立てば幸いです。これにより、注釈に関する私の問題が解決しました。

于 2011-09-28T22:18:00.763 に答える