user térkép megjelenítése az user-profile- ban

vikicica22 képe

Hello mindenki!

Nem tudok rájönni hogyan lehet a felhasználónak a térképét megjeleníteni a user-profile.tpl.php
A felhasználó bejelőli az adatlapján hogy hol lakik de a user-profile.tpl.php csak ez jelenik meg :

Helyszín
Magyarország
46° 50' 3.5628" N, 20° 41' 21.09" E

térkép sehol :(

Ebben kérem a segítségeteket hogyan lehet megjeleníteni az adott felhasználónak a térképét a user-profile.tpl.php

Üdv.: Viki

Melyik modulhoz, modulokhoz kapcsolódik a téma?: 
Drupal verzió: 
gergely képe

Milyen modulokat hasznaltal hozza? Locale, GMAP, Profile?

0
0

---
Tévedni mindenkinek szabad, csak a mérnöknek észre kell vennie.

vikicica22 képe

Igen ezeket használom, de le is írtam :) hiszen ott van a követés alatt:
Modulok használata: Drupal 6.x, gmap, location, user, profile

0
0
vikicica22 képe

Szántó Gábor egyik írása vezetette az én problémám megoldásra:

Nem szűrőt, hanem felhasználó

Views –ban tudtam megoldani és ott a felhasználó azonosító argumentumot kellet használni:

$view = new view;
$view->name = 'felhasznalok_profile';
$view->description = '';
$view->tag = '';
$view->view_php = '';
$view->base_table = 'users';
$view->is_cacheable = FALSE;
$view->api_version = 2;
$view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */
$handler = $view->new_display('default', 'Defaults', 'default');
$handler->override_option('fields', array(
  'name' => array(
    'label' => '',
    'alter' => array(
      'alter_text' => 0,
      'text' => '',
      'make_link' => 0,
      'path' => '',
      'link_class' => '',
      'alt' => '',
      'prefix' => '',
      'suffix' => '',
      'target' => '',
      'help' => '',
      'trim' => 0,
      'max_length' => '',
      'word_boundary' => 1,
      'ellipsis' => 1,
      'html' => 0,
      'strip_tags' => 0,
    ),
    'empty' => '',
    'hide_empty' => 0,
    'empty_zero' => 0,
    'link_to_user' => 1,
    'overwrite_anonymous' => 0,
    'anonymous_text' => '',
    'exclude' => 0,
    'id' => 'name',
    'table' => 'users',
    'field' => 'name',
    'relationship' => 'none',
  ),
));
$handler->override_option('arguments', array(
  'uid' => array(
    'default_action' => 'default',
    'style_plugin' => 'default_summary',
    'style_options' => array(),
    'wildcard' => 'all',
    'wildcard_substitution' => 'Minden',
    'title' => '',
    'breadcrumb' => '',
    'default_argument_type' => 'user',
    'default_argument' => '',
    'validate_type' => 'none',
    'validate_fail' => 'not found',
    'break_phrase' => 0,
    'not' => 0,
    'id' => 'uid',
    'table' => 'users',
    'field' => 'uid',
    'validate_user_argument_type' => 'either',
    'validate_user_roles' => array(
      '2' => 0,
      '3' => 0,
      '4' => 0,
    ),
    'override' => array(
      'button' => 'Felülírás',
    ),
    'relationship' => 'none',
    'default_options_div_prefix' => '',
    'default_argument_fixed' => '',
    'default_argument_user' => 0,
    'default_argument_image_size' => '_original',
    'default_argument_php' => '',
    'validate_argument_node_type' => array(
      'page' => 0,
      'story' => 0,
    ),
    'validate_argument_node_access' => 1,
    'validate_argument_nid_type' => 'nid',
    'validate_argument_vocabulary' => array(
      '1' => 0,
    ),
    'validate_argument_type' => 'tid',
    'validate_argument_transform' => 0,
    'validate_user_restrict_roles' => 0,
    'image_size' => array(
      '_original' => '_original',
      'thumbnail' => 'thumbnail',
      'preview' => 'preview',
    ),
    'validate_argument_php' => '',
  ),
));
$handler->override_option('access', array(
  'type' => 'role',
  'role' => array(
    '2' => 2,
    '3' => 3,
    '4' => 4,
  ),
));
$handler->override_option('cache', array(
  'type' => 'none',
));
$handler->override_option('title', 'Felhasználók');
$handler->override_option('header_format', '3');
$handler->override_option('header_empty', 0);
$handler->override_option('items_per_page', 0);
$handler->override_option('use_pager', '0');
$handler->override_option('style_plugin', 'gmap');
$handler->override_option('style_options', array(
  'grouping' => '',
  'macro' => '[gmap zoom=12 |width=100% |height=300px]',
  'datasource' => 'location',
  'latfield' => 'name',
  'lonfield' => 'name',
  'markers' => 'userrole',
  'markerfield' => 'name',
  'markertype' => '',
  'center_on_nodearg' => 1,
  'center_on_nodearg_arg' => 'uid',
  'highlight_nodearg' => 0,
  'highlight_nodearg_arg' => 'uid',
  'highlight_nodearg_color' => '#FF0000',
  'tooltipenabled' => 0,
  'tooltipfield' => 'name',
));

Ezek után az user-profile.tpl.php – megjelenítettem így:

 <?php print views_embed_view('felhasznalok_profile', 'default', $node->nid); ?>

0
0
Justice képe

Kedves Viki!
Köszönöm, de sajnos messze nem vitt közelebb a megoldáshoz, mert a View modul számomra kínai és abban is a mandarin verzió....tehát valszeg nem most lesz gmap megjelenítésem....

0
0