Android Open Source - capture-the-flag Marker Factory Google






From Project

Back to project page capture-the-flag.

License

The source code is released under:

Copyright ? 2014 Microsoft Mobile Oy. All rights reserved. Microsoft is a registered trademark of Microsoft Corporation. Nokia and HERE are trademarks and/or registered trademarks of Nokia Corporati...

If you think the Android project capture-the-flag listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (c) 2014 Microsoft Mobile. All rights reserved.
 * See the license text file provided with this project for more information.
 *///from   w ww .ja  v a  2 s  .c om

package com.nokia.example.capturetheflag.map.google;

import android.content.res.Resources;
import android.graphics.Bitmap;
import android.util.DisplayMetrics;

import com.google.android.gms.maps.model.BitmapDescriptor;
import com.google.android.gms.maps.model.BitmapDescriptorFactory;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.MarkerOptions;
import com.nokia.example.capturetheflag.map.MarkerFactoryBase;
import com.nokia.example.capturetheflag.network.model.Flag;
import com.nokia.example.capturetheflag.network.model.Player;

/**
 * Helper class using Google APIs for creating map markers, e.g. player or flag marker.
 */
public class MarkerFactoryGoogle extends MarkerFactoryBase {

    private static final float ANCHOR_U = 1.0f - (12.0f / (float) PLAYER_NAME_SIZE);
    private static final float ANCHOR_V = 1.0f;

    /**
     * Creates and returns a {@link MarkerOptions} instance for a player marker
     * to be used for creating a new marker on the Google map.
     *
     * @param player  Player data, @see {@link Player}.
     * @param metrics Display metrics to use for size calculations.
     * @param res     Resources to use.
     * @return Map marker options for the player marker, @see {@link MarkerOptions}.
     */
    public static MarkerOptions createPlayerMarker(final Player player, DisplayMetrics metrics, Resources res) {
        Bitmap bitmap = getBitmapForPlayer(player, metrics, res);
        BitmapDescriptor bmap = BitmapDescriptorFactory.fromBitmap(bitmap);
        MarkerOptions marker = new MarkerOptions().position(new LatLng(player.getLatitude(), player.getLongitude())).icon(bmap).anchor(ANCHOR_U, ANCHOR_V);

        return marker;
    }

    /**
     * Creates and returns a {@link MarkerOptions} instance for a flag marker
     * to be used for creating a new marker on the Google map.
     *
     * @param player  Player data, @see {@link Player}.
     * @param metrics Display metrics to use for size calculations.
     * @param res     Resources to use.
     * @return Map marker options for the player marker, @see {@link MarkerOptions}.
     */
    public static MarkerOptions createFlagMarker(Flag flag, Bitmap bitmap, int size) {
        BitmapDescriptor bmap = BitmapDescriptorFactory.fromBitmap(Bitmap.createScaledBitmap(bitmap, size, size, true));
        MarkerOptions marker = new MarkerOptions().position(new LatLng(flag.getLatitude(), flag.getLongitude())).icon(bmap);
        return marker;
    }
}




Java Source Code List

com.nokia.example.capturetheflag.AboutActivity.java
com.nokia.example.capturetheflag.Controller.java
com.nokia.example.capturetheflag.CreateGameFragment.java
com.nokia.example.capturetheflag.GameEndedDialogFragment.java
com.nokia.example.capturetheflag.GameMenuFragment.java
com.nokia.example.capturetheflag.HelpActivity.java
com.nokia.example.capturetheflag.JoinGameFragment.java
com.nokia.example.capturetheflag.MainActivity.java
com.nokia.example.capturetheflag.PauseDialog.java
com.nokia.example.capturetheflag.PurchasePremiumFragment.java
com.nokia.example.capturetheflag.ServerSettingsDialog.java
com.nokia.example.capturetheflag.Settings.java
com.nokia.example.capturetheflag.location.LocationManagerBase.java
com.nokia.example.capturetheflag.location.LocationManagerFactory.java
com.nokia.example.capturetheflag.location.LocationManagerInterface.java
com.nokia.example.capturetheflag.location.LocationManagerListener.java
com.nokia.example.capturetheflag.location.LocationUtils.java
com.nokia.example.capturetheflag.location.google.LocationManagerGoogle.java
com.nokia.example.capturetheflag.location.here.LocationManagerHere.java
com.nokia.example.capturetheflag.map.GameMapFactory.java
com.nokia.example.capturetheflag.map.GameMapInterface.java
com.nokia.example.capturetheflag.map.GameMapUtils.java
com.nokia.example.capturetheflag.map.MarkerFactoryBase.java
com.nokia.example.capturetheflag.map.google.GameMapGoogle.java
com.nokia.example.capturetheflag.map.google.MarkerFactoryGoogle.java
com.nokia.example.capturetheflag.map.here.GameMapHere.java
com.nokia.example.capturetheflag.map.here.MarkerFactoryHere.java
com.nokia.example.capturetheflag.network.FlagCapturedResponse.java
com.nokia.example.capturetheflag.network.GameListRequest.java
com.nokia.example.capturetheflag.network.GameListResponse.java
com.nokia.example.capturetheflag.network.JSONRequest.java
com.nokia.example.capturetheflag.network.JSONResponse.java
com.nokia.example.capturetheflag.network.JoinRequest.java
com.nokia.example.capturetheflag.network.JoinedResponse.java
com.nokia.example.capturetheflag.network.NetworkClient.java
com.nokia.example.capturetheflag.network.OfflineClient.java
com.nokia.example.capturetheflag.network.SocketIONetworkClient.java
com.nokia.example.capturetheflag.network.UpdatePlayerRequest.java
com.nokia.example.capturetheflag.network.UpdatePlayerResponse.java
com.nokia.example.capturetheflag.network.model.Flag.java
com.nokia.example.capturetheflag.network.model.Game.java
com.nokia.example.capturetheflag.network.model.ModelConstants.java
com.nokia.example.capturetheflag.network.model.Player.java
com.nokia.example.capturetheflag.notifications.NotificationsManagerBase.java
com.nokia.example.capturetheflag.notifications.NotificationsManagerFactory.java
com.nokia.example.capturetheflag.notifications.NotificationsManagerInterface.java
com.nokia.example.capturetheflag.notifications.NotificationsUtils.java
com.nokia.example.capturetheflag.notifications.google.GcmBroadcastReceiver.java
com.nokia.example.capturetheflag.notifications.google.GcmIntentService.java
com.nokia.example.capturetheflag.notifications.google.NotificationsManagerGoogle.java
com.nokia.example.capturetheflag.notifications.nokia.NokiaNotificationsBroadcastReceiver.java
com.nokia.example.capturetheflag.notifications.nokia.NokiaNotificationsIntentService.java
com.nokia.example.capturetheflag.notifications.nokia.NotificationsManagerNokia.java